Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

AttributeDescriptionVersion IntroducedPro Version Introduced
BeginGroupDetermines if this control begins a new group.1.03.2
FormatThe format used to render the date.n/a4.0.1
HeightThe height of the control1.03.2
KeyThe unique identifier of this control. Must be unique among all other controls. (Required)1.03.2
HeightThe height of the control1.03.2
KeyboardTipThe keyboard tooltip that appears when the user holds the Alt key.1.03.2
TooltipThe text to appear when the user hovers over the control.1.03.2
WidthThe width of the control1.03.2

...

The BeginGroup attribute can be set to "True" or "False". When set to "True", it informs the ribbon that this control should not be grouped with the control before it and should be the first control in a new group. This attribute only works if the control is in a group whose GroupControls attribute is "True".

Format

The Format attribute lets you customize the date format. By default, dates are displayed in "DD/MM/YY" format, but you may set any other valid date format.

Height

The Height attribute sets a new fixed height for the control.

Key

The Key attribute defines the unique identifier you will use in properties, methods, or events to identify this control. This needs to be unique among all other controls, regardless of control type.

Height

The Height attribute sets a new fixed height for the control.

KeyboardTip

The KeyboardTip attribute establishes the sequence of keys that trigger this control when the user is holding down the Alt key.

...

Code Block
<DateField Key="DTF_TEST" Caption="Date" Width="80" Tooltip="This is a date field." Format="MM/DD/YYYY" />