Defines the horizontal and vertical alignment for a text output inside an area
Namespace: RSGraphics
Delphi
|
type
T2DTextAlignment = (
taTopLeft,
taTopCenter,
taTopRight,
taCenterLeft,
taCentered,
taCenterRight,
taBottomLeft,
taBottomCenter,
taBottomRight );
|
|
Name
|
Description
|
|
taBottomCenter
|
Center the text horizontally and put it on the bottom vertically
|
|
taBottomLeft
|
Align text to the bottom vertically and align left horizontally
|
|
taBottomRight
|
Align text to the bottom vertically and align right horizontally
|
|
taCentered
|
Center the text horizontally and vertically
|
|
taCenterLeft
|
Center the text vertically and align left horizontally
|
|
taCenterRight
|
Center the text vertically and align right horizontally
|
|
taTopCenter
|
Center the text horizontally and put it on the tp[ vertically
|
|
taTopLeft
|
Align text to the top vertically and align left horizontally
|
|
taTopRight
|
Align text to the top vertically and align right horizontally
|
Top
|