TextShape location

Gets or Sets the location of the text shape.

public Point3D location {get;Set}

 

Return value

Point3D Location of the shape in a Point3D object

 

Example

Copy
TextShape textShape = new TextShape();

textShape.AddText("Sample text Sample text", "Arial", FontStyle.Regular, 10f, 1f);
textShape.TextBoxHeight = 20;
textShape.TextBoxWidth = 60;
textShape.Location.X = 0;
textShape.Location.Y = 0;