ColumnBase.ActualWidth Property
Gets the column’s actual width. This is a dependency property.
Namespace: DevExpress.UI.Xaml.Grid
Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
Declaration
[XtraSerializableProperty(2147483647)]
[GridUIProperty]
[XtraResetProperty(ResetPropertyMode.None)]
[CloneDetailMode(CloneDetailMode.Force)]
public double ActualWidth { get; }
Property Value
Type | Description |
---|---|
Double | A Double value that is the column’s width, in pixels. |
Remarks
Column widths can be changed automatically, so that the total columns’ width matches the grid’s width. In this instance, changing the width of one column automatically changes the widths of other columns. This behavior is controlled by the grid’s GridControl.AutoWidth property. To obtain the actual width of columns, use their ActualWidth property.
See Also