In This Topic
Initializes a new instance of the
TextRect class with the specified coordinates, size, and flags.
Syntax
'Declaration
Public Function New( _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As System.Boolean, _
ByVal As System.Boolean, _
ByVal As System.Boolean, _
ByVal As System.Boolean _
)
public TextRect(
System.int ,
System.int ,
System.float ,
System.float ,
System.float ,
System.float ,
System.bool ,
System.bool ,
System.bool ,
System.bool
)
Parameters
- codePointIndex
- Index of the first code point in the text fragment.
- codePointCount
- The number of code points in the text fragment.
- x
- The X coordinate of the rectangle.
- y
- The Y coordinate of the rectangle.
- width
- The width of the rectangle.
- height
- The height of the rectangle.
- rightToLeft
- Indicates if the text fragment should appear from right to left.
- vertical
- Indicates if the text fragment should appear upright with vertical reading direction.
- sideways
- Indicates if the text fragment should appear rotated 90 or -90 degrees.
- rotateSidewaysCounterclockwise
- Indicates if sideways should be rotated counterclockwise.
See Also