FORMAT_OUTPUT_TYPE

typedef enum
{
      OUTTYPE_PLAIN, 
      OUTTYPE_WORD_PROCESSOR, 
      OUTTYPE_TRUE_WORD_PROCESSOR, 
      OUTTYPE_TABLE, 
      OUTTYPE_UNKNOWN, 
   } FORMAT_OUTPUT_TYPE;

The FORMAT_OUTPUT_TYPE enumerated type represents the possible text output types.

Value

Meaning

OUTTYPE_PLAIN

Plain text: only characters, without any formatting information, embedded images or framed text. Corresponds to FORMATLEVEL_DROP

OUTTYPE_WORD_PROCESSOR

Word processor output: formatted text. May handle embedded images, but not columns or text frames. Corresponds to FORMATLEVEL_DROP or FORMATLEVEL_PART

OUTTYPE_TRUE_WORD_PROCESSOR

Sophisticated word processor output: Supports formatted text with embedded images, and text or other elements in frames. Corresponds to any of the three format levels.

OUTTYPE_TABLE

Spreadsheet output.

OUTTYPE_UNKNOWN

Unknown output. The selected output converter is unknown for the Engine.

Comments

This enumerated type is used by the following object:

ILTFileFormatInfo