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

TdxCustomRangeControl.ClientPropertiesClass Property

Specifies the data range selection and visualization model by its class-reference.

#Declaration

Delphi
property ClientPropertiesClass: TdxRangeControlClientPropertiesClass read; write;

#Property Value

Type
TdxRangeControlClientPropertiesClass

#Remarks

You can use this property to assign or change the current data range selection and visualization model by assigning a class-reference to another TdxRangeControlCustomClientProperties class descendant:

Delphi
//...
uses
  dxRangeControl;
//...
  dxRangeControl1.ClientPropertiesClass := TdxRangeControlDateTimeClientProperties;  // Display a single date/time scale on the range control's ruler

For the full list of data range selection and visualization models supported by the range control, refer to the ClientProperties property description.

See Also