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)
Syntaxpublic static void GetTextBox(
this DBText dbText,
out Point3d point1,
out Point3d point2,
out Matrix3d transform
)
<ExtensionAttribute>
Public Shared Sub GetTextBox (
dbText As DBText,
<OutAttribute> ByRef point1 As Point3d,
<OutAttribute> ByRef point2 As Point3d,
<OutAttribute> ByRef transform As Matrix3d
)
public:
[ExtensionAttribute]
static void GetTextBox(
DBText^ dbText,
[OutAttribute] Point3d% point1,
[OutAttribute] Point3d% point2,
[OutAttribute] Matrix3d% transform
)
[<ExtensionAttribute>]
static member GetTextBox :
dbText : DBText *
point1 : Point3d byref *
point2 : Point3d byref *
transform : Matrix3d byref -> unit
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