TiSwitchQuad.ValueY

TiSwitchQuad

Use ValueY as a variable for storing changes when the user clicks the up or down button. The amount ValueY is changed for each click is specified by the IncrementY property.

property ValueY : Double;

Description

Use ValueY as a variable for storing changes when the user clicks the up or down button. The amount ValueY is changed for each click is specified by the IncrementY property. When the up button is clicked, IncrementY is added to the ValueY property. When the down button is clicked, IncrementY is subtracted from the ValueY property

This property is provided so that you do need to maintain a separate variable outside of the control and have to write code to update it.

Example

Delphi

Value := iComponent.ValueY;

C++ Builder

Value = iComponent->ValueY;

Contents | Index | Previous | Next