Class DateProperties
Configures a structured document tag as a date picker with customizable calendar type, format, and culture.
Inherited Members
Namespace: Telerik.Windows.Documents.Flow.Model.StructuredDocumentTags
Assembly: Telerik.Windows.Documents.Flow.dll
Syntax
public class DateProperties : SdtProperties, ISdtProperties
Constructors
DateProperties()
Properties
Calendar
Gets or sets the calendar system used for date display, such as Gregorian, Hijri, or Hebrew.
Declaration
public SdtCalendar? Calendar { get; set; }
Property Value
|
System.Nullable<SdtCalendar>
|
DateFormat
Gets or sets the date format pattern used to display the date value in the document.
Declaration
public string DateFormat { get; set; }
Property Value
|
System.String
|
DateMappingType
Gets or sets the data type used when mapping the date value to external data sources via XML data binding.
Declaration
public DateMappingType? DateMappingType { get; set; }
Property Value
|
System.Nullable<DateMappingType>
|
FullDate
Gets or sets the date and time value stored in the date picker control.
Declaration
public DateTime? FullDate { get; set; }
Property Value
|
System.Nullable<System.DateTime>
|
Language
Gets or sets the culture that determines how the date is formatted and which calendar is used.
Declaration
public CultureInfo Language { get; set; }
Property Value
|
System.Globalization.CultureInfo
|