BaseRow.Fixed Property
Gets or sets whether the row is fixed (anchored to a control’s top or bottom edge).
Namespace: DevExpress.XtraVerticalGrid.Rows
Assembly: DevExpress.XtraVerticalGrid.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
#Declaration
[DefaultValue(FixedStyle.None)]
[DXCategory("Appearance")]
public virtual FixedStyle Fixed { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
DevExpress. |
None | A DevExpress. |
#Remarks
You can use the Fixed property to anchor a row to a control’s top or bottom edge. This can be accomplished by setting the Fixed property to Top and Bottom respectively.
Fixed rows do not take part in vertical control scrolling.
To get rows that are currently fixed, use the VGridControlBase.FixedTopRows and VGridControlBase.FixedBottomRows collections.
Nested rows cannot be fixed. To fix a nested row, first, remove it from its parent and then add it to the control’s root row collection. See an example in the VertGridMainDemo demo.