ITabObject.Angle

Syntax

Angle: Double;

Description

The Angle property determines object rotation angle.

Example

Executing the example requires a form with the Button1 button located on it, the TabSheetBox component, and the UiTabSheet component named UiTabSheet1, that is used as a data source for TabSheetBox. The table must contain some objects. The link to the Tab system assembly should be added.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    Tab: ITabSheet;
    TabObj: ITabObject;
Begin
    Tab := UiTabSheet1.TabSheet;
    TabObj := Tab.Objects.SelectedObject(0);
    TabObj.Angle := 30;
End Sub Button1OnClick;

After executing the example the table object is rotated by 30 degrees clockwise.

See also:

ITabObject