Skip to main content
Tab

FilterControlColumn.PropertyName Property

Gets or sets a filter property’s name.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public virtual string PropertyName { get; set; }

Property Value

Type Default Description
String String.Empty

A string value that specifies the filter property’s name.

Remarks

Use the PropertyName property to specify the name of the data source field to which the current filter column corresponds. For example, if the ASPxFilterControl is used to filter the ASPxGridView’s data, the filter control’s columns should correspond to the grid view’s columns. In this instance, a filter column’s PropertyName property must match the corresponding grid view column’s GridViewDataColumn.FieldName property value.

To specify the filter column’s caption displayed within the ASPxFilterControl, use the FilterControlColumn.DisplayName property.

See Also