Skip to main content
A newer version of this page is available. .

IFileDialogServiceBase.Filter Property

Gets or sets a filter string which specifies options that are available in the “Files of type” box in the dialog box.

Namespace: DevExpress.Mvvm

Assembly: DevExpress.Mvvm.v20.2.dll

NuGet Packages: DevExpress.Mvvm, DevExpress.Uwp.Controls, DevExpress.WindowsDesktop.Mvvm

Declaration

string Filter { get; set; }

Property Value

Type Description
String

A System.String value containing the file filtering options available in the dialog box. The default is an empty string.

Remarks

The following are examples of a filter string:

Text files (*.txt)|*.txt|All files (*.*)|*.*

Image Files (*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|All files (*.*)|*.*

Use the FilterIndex property to set which filtering option is shown first to the user.

See Also