FileManagerDetailsColumn.FixedStyle Property
Gets or sets whether the column is fixed on a grid’s left edge.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
[DefaultValue(GridViewColumnFixedStyle.None)]
public GridViewColumnFixedStyle FixedStyle { get; set; }
Property Value
Type | Default | Description |
---|---|---|
GridViewColumnFixedStyle | None | One of the GridViewColumnFixedStyle enumeration values. |
Available values:
Name | Description |
---|---|
None | A column isn’t fixed to a grid’s left edge, can be moved by dragging, and takes part in horizontal scrolling. |
Left | A column is anchored to a grid’s left edge. |
Remarks
When the ASPxFileManager file list displays a grid (the FileManagerSettingsFileList.View property is set to Details), you can use the FixedStyle property to fix a column on a grid’s left edge. In this case, a column can be moved among fixed columns only.
See Also