Skip to main content

TdxCustomRangeTrackBarProperties.EditValueFormat Property

Specifies the format in which the editor’s edit value is stored.

Declaration

property EditValueFormat: TdxRangeTrackBarEditValueFormat read; write; default revfInt64;

Property Value

Type Default
TdxRangeTrackBarEditValueFormat revfInt64

Remarks

Options include:

Value Meaning
revfInt64 The edit value is an Int64 value whose lower and higher 32 bits are Integer values representing the lower and upper bounds (Range.Min and Range.Max property values) of the selected range.
revfString The edit value is a string containing a string representation of the Range.Min and Range.Max property values delimited by a character specified by the Delimiter property.

The default value of the EditValueFormat property is revfInt64.

See Also