次の方法で共有


ModuleListPageSearchOptions クラス

定義

モジュール リストの検索フィールドを取得します。 このクラスは継承できません。

public ref class ModuleListPageSearchOptions sealed
public sealed class ModuleListPageSearchOptions
type ModuleListPageSearchOptions = class
Public NotInheritable Class ModuleListPageSearchOptions
継承
ModuleListPageSearchOptions

次の例は、表示オプションを設定する方法を示しています。

protected override void OnSearch(
    ModuleListPageSearchOptions options) {

    if (options.ShowAll) {
        _searchText = null;
    } else {
        _searchField = options.Field.Name;
        _searchText = options.Text.ToLowerInvariant();
    }

    ReloadPage();
}

注釈

このクラスは、モジュール リストの検索をフィルター処理するために使用されます。

コンストラクター

ModuleListPageSearchOptions()

ModuleListPageSearchOptions クラスの新しいインスタンスを初期化します。

ModuleListPageSearchOptions(String)

指定した検索テキストを使用して、 ModuleListPageSearchOptions クラスの新しいインスタンスを初期化します。

ModuleListPageSearchOptions(String, ModuleListPageSearchField)

指定した検索テキストとフィールドを ModuleListPageSearchOptions 使用して、 クラスの新しいインスタンスを初期化します。

プロパティ

Field

コンストラクターに渡されるパラメーターの field 値を取得します。

ShowAll

モジュール リスト内のすべての項目を表示するかどうかを示す値を取得します。

Text

コンストラクターに渡されるパラメーターの text 値を取得します。

適用対象