Class TreeGridNumericColumn
Represents a column that displays the numeric values in its cell content.
Inheritance
Inherited Members
Namespace: Syncfusion.UI.Xaml.TreeGrid
Assembly: Syncfusion.SfGrid.UWP.dll
Syntax
public class TreeGridNumericColumn : TreeGridTextColumnBase, IDisposable, IFilterDefinition
Constructors
TreeGridNumericColumn()
Initializes a new instance of the TreeGridNumericColumn class.
Declaration
public TreeGridNumericColumn()
Fields
AllowNullProperty
Identifies the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.AllowNullInput dependency property.
Declaration
public static readonly DependencyProperty AllowNullProperty
Field Value
Type |
---|
Windows.UI.Xaml.DependencyProperty |
Remarks
The identifier for the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.AllowNullInput dependency property.
BlockCharactersOnTextInputProperty
Identifies the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.BlockCharactersOnTextInput dependency property.
Declaration
public static readonly DependencyProperty BlockCharactersOnTextInputProperty
Field Value
Type |
---|
Windows.UI.Xaml.DependencyProperty |
Remarks
The identifier for the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.BlockCharactersOnTextInput dependency property.
FormatStringProperty
Identifies the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.FormatString dependency property.
Declaration
public static readonly DependencyProperty FormatStringProperty
Field Value
Type |
---|
Windows.UI.Xaml.DependencyProperty |
Remarks
The identifier for the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.FormatString dependency property.
MaximumNumberDecimalDigitsProperty
Identifies the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.MaximumNumberDecimalDigits dependency property.
Declaration
public static readonly DependencyProperty MaximumNumberDecimalDigitsProperty
Field Value
Type |
---|
Windows.UI.Xaml.DependencyProperty |
Remarks
The identifier for the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.MaximumNumberDecimalDigits dependency property.
ParsingModeProperty
Identifies the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.ParsingMode dependency property.
Declaration
public static readonly DependencyProperty ParsingModeProperty
Field Value
Type |
---|
Windows.UI.Xaml.DependencyProperty |
Remarks
The identifier for the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.ParsingMode dependency property.
PercentDisplayModeProperty
Identifies the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.PercentDisplayMode dependency property.
Declaration
public static readonly DependencyProperty PercentDisplayModeProperty
Field Value
Type |
---|
Windows.UI.Xaml.DependencyProperty |
Remarks
The identifier for the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.PercentDisplayMode dependency property.
WaterMarkProperty
Identifies the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.WaterMark dependency property.
Declaration
public static readonly DependencyProperty WaterMarkProperty
Field Value
Type |
---|
Windows.UI.Xaml.DependencyProperty |
Remarks
The identifier for the Syncfusion.UI.Xaml.TreeGrid.TreeGridNumericColumn.WaterMark dependency property.
Properties
AllowNull
Gets or sets a value that indicates whether the null values are allowed in TreeGridNumericColumn.
Declaration
public bool AllowNull { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the null values are allowed ; otherwise , false . The default value is false. |
BlockCharactersOnTextInput
Gets or sets a value indicating whether the characters is blocked from an user input.
Declaration
public bool BlockCharactersOnTextInput { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the characters blocked; otherwise, false. |
FormatString
Gets or sets a string that specifies how to format the bound value in TreeGridNumericColumn.
Declaration
public string FormatString { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string that specifies how to format the bound value in TreeGridNumericColumn. The default value is string.Empty. |
MaximumNumberDecimalDigits
Gets or sets the maximum decimal digits to restrict the decimal values.
Declaration
public int MaximumNumberDecimalDigits { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The default value is System.Int32.MaxValue. |
ParsingMode
Gets or sets a value that decides whether the user can parse decimal or double value in TreeGridNumericColumn.
Declaration
public Parsers ParsingMode { get; set; }
Property Value
Type | Description |
---|---|
Parsers | One of the Parsers that specifies the parsing mode of TreeGridNumericColumn. The default mode is Parsers.Double . |
PercentDisplayMode
Gets or sets a value which specifies how to display numeric data in percent mode.
Declaration
public PercentDisplayMode PercentDisplayMode { get; set; }
Property Value
Type | Description |
---|---|
PercentDisplayMode | The default value is PercentDisplayMode. |
WaterMark
Gets or sets the content displayed as a watermark in TreeGridNumericColumn when its cell contains empty value.
Declaration
public object WaterMark { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The content displayed as a watermark in TreeGridNumericColumn when its cell contains empty value. The default value is string.Empty . |