Click or drag to resize
Ab4d.SharpEngine logo

TextPositionTypes Enumeration

TextPositionTypes is the same as PositionTypes except that it also defines a Baseline value that positions the text so that its baseline is at the specified position.

Namespace: Ab4d.SharpEngine.Common
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9196+3eba290aba85a9aa739abf2459bc51e303a050d7
Syntax
C#
[FlagsAttribute]
public enum TextPositionTypes
Members
Member nameValueDescription
Center0 Center
Left1 Left (smallest value in X direction)
Right2 Right (biggest value in X direction)
Top4 Top (biggest value in Y direction)
TopLeft5 Top and Left
TopRight6 Top and Right
Bottom8 Bottom (smallest value in Y direction)
BottomLeft9 Bottom and Left
BottomRight10 Bottom and Right
Front16 Front (biggest value in Z direction)
Back32 Back (smallest value in Z direction)
Baseline64 Baseline positions the text so that its baseline is at the specified position.
See Also