The StringAlignment enumeration specifies how a string is aligned in reference to the bounding rectangle. A bounding rectangle is used to define the area in which the text displays.
C++ Syntax
typedef enum {
StringAlignmentNear = 0,
StringAlignmentCenter = 1,
StringAlignmentFar = 2
} StringAlignment;
FreeBASIC 语法
enum
StringAlignmentNear = 0
StringAlignmentCenter = 1
StringAlignmentFar = 2
end enum
常数
StringAlignmentNear
Specifies that alignment is towards the origin of the bounding rectangle. May be used for alignment of characters along the line or for alignment of lines within the rectangle. For a right to left bounding rectangle (StringFormatFlagsDirectionRightToLeft), the origin is at the upper right.
StringAlignmentCenter
Specifies that alignment is centered between origin and extent (width) of the formatting rectangle.
StringAlignmentFar
Specifies that alignment is to the far extent (right side) of the formatting rectangle.