OdTextAlignModeFlags Enumeration |
The open document text align mode flags
Namespace: Aspose.Imaging.FileFormats.OpenDocument.EnumsAssembly: Aspose.Imaging (in Aspose.Imaging.dll) Version: 21.04
Syntax[FlagsAttribute]
public enum OdTextAlignModeFlags
<FlagsAttribute>
Public Enumeration OdTextAlignModeFlags
[FlagsAttribute]
public enum class OdTextAlignModeFlags
[<FlagsAttribute>]
type OdTextAlignModeFlags
Members
| Member name | Value | Description |
---|
| Noupdatecp | 0 |
The drawing position in the playback device context MUST NOT be updated after each
text output call. The reference point MUST be passed to the text output function.
|
| Left | 0 |
The reference point MUST be on the left edge of the bounding rectangle.
|
| Top | 0 |
The reference point MUST be on the top edge of the bounding rectangle.
|
| Updatecp | 1 |
The drawing position in the playback device context MUST be updated after each text
output call. It MUST be used as the reference point.
|
| Right | 2 |
The reference point MUST be on the right edge of the bounding rectangle.
|
| Center | 6 |
The reference point MUST be aligned horizontally with the center of the bounding rectangle.
|
| Bottom | 8 |
The reference point MUST be on the bottom edge of the bounding rectangle.
|
| Baseline | 24 |
The reference point MUST be on the baseline of the text.
|
| Rtlreading | 256 |
The text MUST be laid out in right-to-left reading order, instead of the default left-to right order. This SHOULD
be applied only when the font that is defined in the playback
device context is either Hebrew or Arabic.
|
| Horizontal | 6 |
Represents Horisontal text algin sets (Left | Right | Center)
|
| Vertical | 24 |
Represents Vertical text algin sets (Top | Bottom | Baseline)
|
See Also