Class DataFormDateItem
Represents the class that encapsulates the layout and date picker editor settings for a data field.
Inherited Members
Namespace: Syncfusion.Maui.DataForm
Assembly: Syncfusion.Maui.DataForm.dll
Syntax
public class DataFormDateItem : DataFormItem, IThemeElement
Constructors
DataFormDateItem()
Initializes a new instance of the DataFormDateItem class.
Declaration
public DataFormDateItem()
Fields
FormatProperty
Identifies the Format dependency property.
Declaration
public static readonly BindableProperty FormatProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for Format dependency property. |
MaximumDisplayDateProperty
Identifies the MaximumDisplayDate dependency property.
Declaration
public static readonly BindableProperty MaximumDisplayDateProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for MaximumDisplayDate dependency property. |
MinimumDisplayDateProperty
Identifies the MinimumDisplayDate dependency property.
Declaration
public static readonly BindableProperty MinimumDisplayDateProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for MinimumDisplayDate dependency property. |
Properties
Format
Gets or sets the time format for time picker.
Declaration
public string Format { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value of Format is |
Examples
The below examples shows, how to use the Format property of DataFormDateItem in the SfDataForm.
See Also
MaximumDisplayDate
Gets or sets the maximun display date to restrict the visible dates of the date editor.
Declaration
public DateTime MaximumDisplayDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime | The default value is |
Examples
The below examples shows, how to use the MaximumDisplayDate property of DataFormDateItem in the SfDataForm.
See Also
MinimumDisplayDate
Gets or sets the minimum display date to restrict the visible dates of the date editor.
Declaration
public DateTime MinimumDisplayDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime | The default value is |
Examples
The below examples shows, how to use the MinimumDisplayDate property of DataFormDateItem in the SfDataForm.