TiPlotAnnotationObject.TextRotation

TiPlotAnnotationObject

Sets the rotation angle of a text annotation object.

type TiRotationAngle = (ira000, ira090, ira180, ira270);

property TextRotation : TiRotationAngle;

Description

Use TextRotation to set or get the rotation used to draw text annotations. This property only affects annotations which have their Style property set to ipasText.

These are the possible values:

Value
Meaning
ira000
0 degree rotation
ira090
90 degree rotation
ira180
180 degree rotation
ira270
270 degree rotation

Example

Delphi

iComponent.Annotation[0].TextRotation := ira270;

C++ Builder

iComponent->Annotation[0]->TextRotation = ira270;

Contents | Index | Previous | Next