ALIGNMENT_TYPE

typedef enum
{
      ALIGN_LEFT = 0, 
      ALIGN_RIGHT, 
      ALIGN_CENTERED, 
      ALIGN_JUSTIFIED
} ALIGNMENT_TYPE;

The ALIGNMENT_TYPE enumerated type represents the possible alignment options.

Value

Meaning

ALIGN_LEFT

Paragraphs will have left alignment.

ALIGN_RIGHT

Paragraphs will have right alignment.

ALIGN_CENTERED

Paragraphs will be centered.

ALIGN_JUSTIFIED

Paragraphs will be justified (Default).

Comments

This enumerated type is used by the following object:

ILTParagraphOptions