Interface IFileFilterableModel
Interface that extends the IFileExtensionFilterable interface by providing a notion for filter descriptions and boolean property to determine if filtering is currently active or not.
Inherited Members
Namespace: Telerik.WinControls.FileDialogs
Assembly: Telerik.WinControls.UI.dll
Syntax
public interface IFileFilterableModel : IFileExtensionFilterable
Properties
FilterDescriptors
Gets or sets the list of FileFilterDescriptors described by the Filter property.
Declaration
IList<FileFilterDescriptor> FilterDescriptors { get; }
Property Value
System.Collections.Generic.IList<FileFilterDescriptor>
|
IsFilterApplied
Gets or sets a value indicating whether the current filtering is active or not.
Declaration
bool IsFilterApplied { get; set; }
Property Value
System.Boolean
|