TEXTFORMATINFO

typedef struct _tagTextFormatInfo
{
   L_UINT uStructSize;
   L_CHAR L_FAR * pszName;
   L_CHAR L_FAR * pszDLLName;
   L_CHAR L_FAR * pszExtName;
   FORMAT_OUTPUTTYPE Type;
} TEXTFORMATINFO, L_FAR * pTEXTFORMATINFO;

The TEXTFORMATINFO structure contains detailed information about a specific format.

Member

Description

uStructSize

Specifies the structure size. It should be equal to sizeof(TEXTFORMATINFO).

pszName

Character string that contains the name of the output text format.

pszDLLName

Character string that contains the name of the output converter DLL file containing the Name converter.

pszExtName

Character string that contains the default extension for the final output document.

Type

Value that represents the type of document to output (e.g. plain text, word processor, spreadsheet). For a list of possible values, refer to FORMAT_OUTPUTTYPE.

Comments

pTEXTFORMATINFO is a pointer to a TEXTFORMATINFO structure. Where the function parameter type is pTEXTFORMATINFO, declare a TEXTFORMATINFO variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pTEXTFORMATINFO variable is necessary only if the program requires a pointer.

This structure is used with the L_DocGetTextFormatInfo function.