Class DataGridTimePickerColumn
A column which is used to show any type of System.TimeSpan.
Inherited Members
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridTimePickerColumn : DataGridColumn, IDisposable, IFilterDefinition
Constructors
DataGridTimePickerColumn()
Initializes a new instance of the DataGridTimePickerColumn class.
Declaration
public DataGridTimePickerColumn()
Fields
AllowNullProperty
Identifies the AllowNull bindable property.
Declaration
public static readonly BindableProperty AllowNullProperty
Field Value
| Type |
|---|
| Microsoft.Maui.Controls.BindableProperty |
MaximumProperty
Identifies the Maximum bindable property.
Declaration
public static readonly BindableProperty MaximumProperty
Field Value
| Type |
|---|
| Microsoft.Maui.Controls.BindableProperty |
MinimumProperty
Identifies the Minimum bindable property.
Declaration
public static readonly BindableProperty MinimumProperty
Field Value
| Type |
|---|
| Microsoft.Maui.Controls.BindableProperty |
NullValueProperty
Identifies the NullValue bindable property.
Declaration
public static readonly BindableProperty NullValueProperty
Field Value
| Type |
|---|
| Microsoft.Maui.Controls.BindableProperty |
Properties
AllowNull
Gets or sets a value indicating whether the column can contain null TimeSpan values.
Declaration
public bool AllowNull { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
Maximum
Gets or sets the maximum allowed TimeSpan value for this column.
Declaration
public TimeSpan Maximum { get; set; }
Property Value
| Type | Description |
|---|---|
| System.TimeSpan | A System.TimeSpan representing the maximum allowed value. Default is 24 hours. |
Minimum
Gets or sets the minimum allowed TimeSpan value for this column.
Declaration
public TimeSpan Minimum { get; set; }
Property Value
| Type | Description |
|---|---|
| System.TimeSpan | A System.TimeSpan representing the minimum allowed value. Default is System.TimeSpan.Zero. |
NullValue
Gets or sets the text to display when a cell value is null.
Declaration
public string NullValue { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | A string containing the placeholder text. Default is an empty string. |
Methods
SetConverterForDisplayBinding()
Declaration
protected override void SetConverterForDisplayBinding()