Click or drag to resize

DBTextExtensionGetTextBox Method

Gets the 'text box' of the DBText instance.

Namespace:  Gile.AutoCAD.R20.Extension
Assembly:  Gile.AutoCAD.R20.Extension (in Gile.AutoCAD.R20.Extension.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
public static void GetTextBox(
	this DBText dbText,
	out Point3d point1,
	out Point3d point2,
	out Matrix3d transform
)

Parameters

dbText
Type: DBText
Instance to which the method applies.
point1
Type: Point3d
Lower left corner of the box ('DBText coordinate system').
point2
Type: Point3d
Upper right corner of the box ('DBText coordinate system')
transform
Type: Matrix3d
Transformation matrix from 'DBText coordinate system' to WCS.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DBText. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also