Top   Module   Use   Manual   Index 

com :: sun :: star :: text ::

constants group HoriOrientation


Description
These enumeration values specify the horizontal orientation.


Constants

const short NONE = = 0;
Description
no hard alignment is applied.

For text tables this means that the tables position is defined by the left and right margins.

For frame objects (text frames, graphics,...) this means that the position is defined by a left offset.

const short RIGHT = = 1;
Description
The object is aligned at the right side.
const short CENTER = = 2;
Description
The object is aligned at the middle.
const short LEFT = = 3;
Description
The object is aligned at the left side.
const short INSIDE = = 4;
Description
TODO
const short OUTSIDE = = 5;
Description
TODO
const short FULL = = 6;
Description
The object uses the full space (for text tables only).
const short LEFT_AND_WIDTH = = 7;
Description
The left offset and the width of the object are defined.

For text tables this means that the tables position is defined by the left margin and the width.

Top of Page