ITextBounds Interface
Provides the base requirements for an object that describes the location, size, and flow direction of a range of text.
public interface ITextBounds
Properties
Bottom
Height
The height of the bounds.
IsRightToLeft
Indicates whether the bounds use a right-to-left flow direction.
bool IsRightToLeft { get; }
Property Value
- bool:
trueif the bounds use a right-to-left flow direction; otherwise,false.
Left
The x-axis position of the left side of the bounds.
double Left { get; }
Property Value
Remarks
Getting this property is equivalent to getting the bounds's X property.
Rect
A native rectangle that specifies the bounds.
Rect Rect { get; }
Property Value
- Rect
Right
Top
The y-axis position of the top of the bounds.
double Top { get; }
Property Value
Remarks
Getting this property is equivalent to getting the bounds's Y property.
Width
The width of the bounds.
X
The x-axis position of the left side of the bounds.
Y
The y-axis position of the top of the bounds.