ModuleListPageSearchOptions 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
모듈 목록의 검색 필드를 검색합니다. 이 클래스는 상속될 수 없습니다.
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 |
생성자에 전달되는 매개 변수의 |
ShowAll |
모듈 목록의 모든 항목을 표시할지 여부를 나타내는 값을 가져옵니다. |
Text |
생성자에 전달되는 매개 변수의 |