TiIntegerOutput.Text

TiIntegerOutput

The value property formatted as a String.

property Text : String;

Description

The Text property is the Value property formatted with the FormatStyle., but converted to a string for ease of use. Use this property to set the displayed value through code by passing a string or to read the currently displayed value as a string.

Example

Delphi

Value := iComponent.Text;

iComponent.Text := '25';

C++ Builder

Value = iComponent->Text;

iComponent->Text = "25";

Contents | Index | Previous | Next