ModuleListPage.CanSearch Property

Definition

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;
    }
}

Applies to