다음을 통해 공유


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 값을 가져옵니다.

적용 대상