ModuleListPage.CanSearch Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether a page can be searched.
protected:
virtual property bool CanSearch { bool get(); };
protected virtual bool CanSearch { get; }
member this.CanSearch : bool
Protected Overridable ReadOnly Property CanSearch As Boolean
Property Value
true
if search functionality is supported; otherwise, false
. The default is false
.
Examples
The following example implements the CanSearch property to support searching.
protected override bool CanSearch {
get {
return true;
}
}