![]() | InDesign SDK 20.5 |
#include <IExportTagValues.h>

Public Types | |
| enum | { kDefaultIID = IID_IEXPORTTAGVALUES } |
Public Member Functions | |
| virtual ExportTagData | GetTagData (const WideString &exportType) const =0 |
| virtual void | SetTagData (const WideString &exportType, const ExportTagData &tagData)=0 |
| virtual size_t | GetNumberOfExportTypes () const =0 |
| virtual WideString | GetNthExportType (size_t nthType) const =0 |
| virtual bool16 | GetBreakHTMLFileInEPUB () const =0 |
| virtual void | SetBreakHTMLFileInEPUB (bool16 breakFile)=0 |
| virtual bool16 | GetEmitCSSForStyle () const =0 |
| virtual void | SetEmitCSSForStyle (bool16 emitCSS)=0 |
| virtual bool16 | GetIncludeClassInHTML () const =0 |
| virtual void | SetIncludeClassInHTML (bool16 includeClass)=0 |
Public Member Functions inherited from IPMUnknown | |
| virtual IPMUnknown * | QueryInterface (PMIID interfaceID) const =0 |
| virtual void | AddRef () const =0 |
| virtual void | Release () const =0 |
The IExportTagValues interface stores a persistent, list of tags and values. It is used to store the tags to use for exporting EPUB and PDF
| pure virtual |
Get break html file in EPUB at style. Only meaningful for paragraph style.
| pure virtual |
Get the status of 'emit CSS for this style'.
| pure virtual |
Get the status of 'include class' for this style.
| pure virtual |
Get the nth export type.
| nthType | index to type of export |
| pure virtual |
Get the number of export types.
| pure virtual |
Get the tag data for export type.
| exportType | type of export to get tag data for. i.e. L"PDF", L"EPUB" |
| pure virtual |
Set break html file in EPUB at style.
| breakFile | kTrue to break HTML file at style. |
| pure virtual |
Set 'emit CSS' for this style.
| emitCSS | kTrue to emit CSS for this style, kFalse otherwise. |
| pure virtual |
Set 'include class' for this style.
| includeClass | kTrue to include class for this style, kFalse otherwise. |
| pure virtual |
Set the tag data for export type. Setting to ExportTagData() will remove the entry.
| exportType | type of export to get tag data for. i.e. L"PDF", L"EPUB" |
| tagData | tag data |