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.ClientPropertiesClassName Property

Specifies the data range selection and visualization model type by its class name.

#Declaration

Delphi
property ClientPropertiesClassName: string read; write;

#Property Value

Type
string

#Remarks

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

uses
  dxRangeControl;
//...
  dxRangeControl1.ClientPropertiesClassName := 'TdxRangeControlNumericClientProperties';  // Display a numeric 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