windowsforms-devexpress-dot-xtraverticalgrid-dot-vgridcontrol-91b7e4a7.md
Gets or sets the overall filter expression.
Namespace : DevExpress.XtraVerticalGrid
Assembly : DevExpress.XtraVerticalGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
[Browsable(false)]
[DefaultValue("")]
[XtraSerializableProperty(1000)]
[XtraSerializablePropertyId(3)]
public string ActiveFilterString { get; set; }
<Browsable(False)>
<DefaultValue("")>
<XtraSerializableProperty(1000)>
<XtraSerializablePropertyId(3)>
Public Property ActiveFilterString As String
| Type | Default | Description |
|---|---|---|
| String | String.Empty |
A string that specifies the overall filter expression applied to the control.
|
The ActiveFilterString property allows you to specify a filter condition in code, which will be immediately applied. See an example below.
vGridControl1.ActiveFilterString = "[Country] = 'France' And [City] = 'Paris' Or [Country] = 'Italy' And [City] = 'Bergamo'";
VGridControl1.ActiveFilterString = "[Country] = 'France' And [City] = 'Paris' Or [Country] = 'Italy' And [City] = 'Bergamo'"
See Criteria Language Syntax to learn how to compose filter expressions.
See Also