windowsforms-devexpress-dot-xtragrid-dot-views-dot-layout-dot-optionsfield.md
Gets or sets the region where sort and filter buttons are displayed.
Namespace : DevExpress.XtraGrid.Views.Layout
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(SortFilterButtonShowMode.Default)]
[XtraSerializableProperty]
public virtual SortFilterButtonShowMode SortFilterButtonShowMode { get; set; }
<DefaultValue(SortFilterButtonShowMode.Default)>
<XtraSerializableProperty>
Public Overridable Property SortFilterButtonShowMode As SortFilterButtonShowMode
| Type | Default | Description |
|---|---|---|
| SortFilterButtonShowMode | Default |
A SortFilterButtonShowMode value.
|
Available values:
| Name | Description |
|---|---|
| Default |
The same option as the SortFilterButtonShowMode.InFieldValue option.
| | InFieldCaption |
Sort and filter buttons are displayed in a field caption region.
| | InFieldValue |
Sort and filter buttons are displayed in a field value region.
| | Nowhere |
The buttons are hidden.
|
You can access this nested property as listed below:
| Object Type | Path to SortFilterButtonShowMode |
|---|---|
| LayoutViewColumn |
.OptionsField .SortFilterButtonShowMode
|
Use the SortFilterButtonShowMode property to specify the region where the sort and filter buttons are displayed. The position of the buttons within these regions is specified by the OptionsField.SortFilterButtonLocation property.
See Also