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
Gets the height of the bounds.
IsRightToLeft
Gets whether the bounds use a right-to-left flow direction.
bool IsRightToLeft { get; }
Property Value
- bool:
true
if the bounds use a right-to-left flow direction; otherwise,false
.
Left
Gets the x-axis position of the left side of the bounds. Getting this property is equivalent to getting the bounds's X property.
Rect
Gets a native rectangle that specifies the bounds.
Right
Top
Gets the y-axis position of the top of the bounds. Getting this property is equivalent to getting the bounds's Y property.
Width
Gets the width of the bounds.
X
Gets the x-axis position of the left side of the bounds.
Y
Gets the y-axis position of the top of the bounds.