Skip to main content

TdxGaugeScaleRangeValueLinkedWithScaleValue Enum

Enumerates range bar positioning variants within a quantitative scale.

Declaration

TdxGaugeScaleRangeValueLinkedWithScaleValue = (
    rlsvNone,
    rlsvValueStart,
    rlsvValueEnd
);

Members

Name
rlsvNone
rlsvValueStart
rlsvValueEnd

Remarks

Options include:

Value

Meaning

Example

rlsvNone

The range bar’s length and position are unaffected by the scale’s value and determined by the ValueStart and ValueEnd properties implemented in the TdxGaugeCustomRange class.

rlsvValueStart

The current value of the scale is used as the range bar’s start value. The value of the TdxGaugeCustomRange.ValueStart property is ignored.

rlsvValueEnd

The current value of the scale is used as the range bar’s end value. The value of the TdxGaugeCustomRange.ValueEnd property is ignored.

This type is referenced by the LinkedWithScaleValue property implemented in the TdxGaugeCustomRange class.

See Also