keywordCount
Returns the number keywords in the index.
Read time 1 minuteLast updated 12 days ago
Definition
- Type: Property
- Namespace: UnityEditor.Search
- Assembly: UnityEditor
public int keywordCount { get; }
Examples
using UnityEditor;using UnityEditor.Search;using UnityEngine;static class Example_SearchIndexer_keywordCount{ [MenuItem("Examples/SearchIndexer/keywordCount")] public static void Run() { var searchIndexer = new SearchIndexer("SearchIndexerExample", FileUtil.GetUniqueTempPathInProject()); searchIndexer.Start(); { var di = searchIndexer.AddDocument("unity"); // Add some properties and save the filter keywords. searchIndexer.AddProperty("is", "awesome", di, saveKeyword: true); searchIndexer.AddProperty("search", "powerful", di, saveKeyword: true); } searchIndexer.Finish(() => { OnIndexReady(searchIndexer); // Dispose the SearchIndexer when you are done with it. searchIndexer.Dispose(); }); } private static void OnIndexReady(SearchIndexer si) { Debug.Log($"Index contains {si.keywordCount} keywords"); }}