Class SerializableDataGridNumericColumn
Represents a class that is used to serialize and deserialize DataGridNumericColumn property settings.
Inherited Members
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class SerializableDataGridNumericColumn : SerializableDataGridColumn
Constructors
SerializableDataGridNumericColumn()
Declaration
public SerializableDataGridNumericColumn()
Properties
AllowNullValue
Gets or sets a System.Boolean value indicating whether to commit null values to the DataGridNumericColumn.
Declaration
public bool AllowNullValue { get; set; }
Property Value
Type |
---|
System.Boolean |
Maximum
Gets or sets the maximum value constraint to the DataGridNumericColumn.
Declaration
public Decimal Maximum { get; set; }
Property Value
Type |
---|
System.Decimal |
Minimum
Gets or sets the minimum value constraint to the DataGridNumericColumn.
Declaration
public Decimal Minimum { get; set; }
Property Value
Type |
---|
System.Decimal |
NullValue
Gets or sets an object that is displayed instead of null value if the cell value is null, provided that AllowNullValue is enabled to the DataGridNumericColumn.
Declaration
public object NullValue { get; set; }
Property Value
Type |
---|
System.Object |
Placeholder
Gets or sets a string that is displayed instead of null value if the cell value is null, provided that AllowNullValue is enabled.
Declaration
public string Placeholder { get; set; }
Property Value
Type |
---|
System.String |
ShowClearButton
Gets or sets a value indicating whether to display the clear text button when the grid cell of the numeric column enters edit mode.
Declaration
public bool ShowClearButton { get; set; }
Property Value
Type |
---|
System.Boolean |