IWxStyle.TextPosition

Syntax

TextPosition: WxTextPosition;

Description

The TextPosition property determines the position of text relative to an image used as an object fill.

Example

Executing the example requires that repository contains a workspace with the IWSTYLE identifier containing shape. It is also required to have the ConnectedCPs.gif image.

Add links to the Andy, Drawing, Metabase system assemblies.

Sub UserProc;
Var
    mb: IMetabase;
    ws: IWxWorkspace;
    Shape: IWxShape;
    Style: IWxStyle;
Begin
    // Get workspace for editing
    mb := MetabaseClass.Active;
    ws := mb.ItemById("IWSTYLE").Edit As IWxWorkspace;
    ws.BeginUpdate;
    Shape := ws.Shapes.Item(0);
    Shape.Picture := New GxImage.CreateFromFile("C:\ConnectedCPs.gif");
    Shape.Text := "Text";
    Style := Shape.Style;
    Style.TextFontBrushColor := GxColor.FromName("Red");
    Style.TextPosition := WxTextPosition.Right;
    ws.EndUpdate;
    (ws As IMetabaseObject).Save;
End Sub UserProc;

After executing the example an image is used as shape fill and a shape contains text, aligned at the right relative to the image.

See also:

IWxStyle