Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxCustomRangeTrackBarProperties.EditValueFormat Property

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

#Declaration

Delphi
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