ALIGNMENT

typedef enum
{
   ALIGNMENT_LEFTALIGNMENT = 0,
   ALIGNMENT_RIGHTALIGNMENT,
   ALIGNMENT_CENTERED,
   ALIGNMENT_JUSTIFIED
} ALIGNMENT;

The ALIGNMENT enumerated type represents the possible alignment options.

Value

Meaning

ALIGNMENT_LEFTALIGNMENT

Paragraphs will have left alignment.

ALIGNMENT_RIGHTALIGNMENT

Paragraphs will have right alignment.

ALIGNMENT_CENTERED

Paragraphs will be centered.

ALIGNMENT_JUSTIFIED

Paragraphs will be justified (Default).

Comments

This enumerated type is used by the following structure:

PARAGRAPHOPTIONS