検索したフィーチャーの属性を使用していない場合にフィーチャー取得時に属性を省くことで処理の高速化が可能です。
- コード例(C#)
// 選択モードで図形のみ検索するように設定します。
SearchContents contents = new SearchContents();
contents.Add("#Geometry", true);
contents.Add("#Attributes", false);
contents.Add("#Metrics", mapComponent.CreateSearchMetrics());
selectMode.Contents = contents;