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

FilterControlColumn.PropertiesEdit Property

Gets or sets the editor’s settings used to edit filter values.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public virtual EditPropertiesBase PropertiesEdit { get; set; }

Property Value

Type Description
EditPropertiesBase

An EditPropertiesBase descendant that contains settings specific to a particular editor type.

Remarks

The ASPxFilterControl provides eight types of filter columns. Each column type is associated with a specific editor used to edit operand values. For example, the FilterControlCheckColumn class represents a filter column that contains Boolean values. Its FilterControlColumn.PropertiesEdit property returns the CheckBoxProperties object which contains settings specific to a checkbox editor.

To get the editor on the client, use the ASPxClientFilterControl.GetEditor method.

See Also