TdxBarDateCombo.DateOnStart Property
Specifies the date displayed by the date combo at application startup.
Declaration
property DateOnStart: TdxBarDateOnStart read; write; default bdsToday;
Property Value
Type | Default |
---|---|
TdxBarDateOnStart | bdsToday |
Remarks
Use the DateOnStart property to specify the date displayed by the date combo at application startup. The following values are available for this property.
Value | Description |
---|---|
bdsToday | The current date is displayed. |
bdsNullDate | The date combo is empty. |
bdsCustom | The date specified by the Text property is displayed. |
Note
the actual date displayed within the date combo is also affected by the MinDate and MaxDate properties. For instance, setting the DateOnStart property to bdsToday will not always result in displaying the current date. If the current date is less than specified by the MinDate property, the MinDate property will specify the displayed date, etc.
See Also