This structure defines how XML Export creates heading information based on the source document's content and attributes. Source text is converted to a heading and included in the table of contents if
it meets all the criteria defined by this structure, and
you set the headingCreateType
member of KVXMLTOCOptions
to allow automatic heading generation.
XML Export evaluates the text against each member in the order in which the members appear below.
See KVXMLTOCOptions for more information on automatic generation of headings.
typedef struct tag_KVXMLHeadingInfo { int minParaLen; int maxParaLen; int fontSizeMin; int fontSizeMax; BOOL bMustBeBold; BOOL bMustBeItalic; BOOL bMustBeUnderlined; BOOL bNonZeroIndent; BOOL bNoTabs; BOOL bNoMultiSpaces; int nSpaceBefore; int nSpaceAfter; } KVXMLHeadingInfo;
|