Back to Devexpress

TdxCustomRangeControl.ClientPropertiesClassName Property

vcl-dxrangecontrol-dot-tdxcustomrangecontrol-415d7ce1.md

latest1.7 KB
Original Source

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:

delphi
uses
  dxRangeControl;
//...
  dxRangeControl1.ClientPropertiesClassName := 'TdxRangeControlNumericClientProperties'; // Display a numeric scale on the range control's ruler
cpp
#include "dxRangeControl.hpp"
//...
  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

TdxCustomRangeControl.ClientPropertiesClass

TdxCustomRangeControl Class

TdxCustomRangeControl Members

dxRangeControl Unit