Skip to main content
A newer version of this page is available. .
All docs
V20.2
.NET Framework 4.5.2+

FlatOpcTemplateDocumentExporterOptions Class

Contains options used to save (export) the document in FlatOpcTemplate format (Microsoft Word XML Template, .xml).

Namespace: DevExpress.XtraRichEdit.Export

Assembly: DevExpress.RichEdit.v20.2.Core.dll

NuGet Package: DevExpress.RichEdit.Core

Declaration

[ComVisible(true)]
public class FlatOpcTemplateDocumentExporterOptions :
    FlatOpcDocumentExporterOptions

Remarks

Use the FlatOpcTemplateDocumentExporterOptions class object in the following members:

The code sample below shows how to handle the BeforeExport event to specify FlatOpcTemplate export options:

using DevExpress.XtraRichEdit.Export;

private static void WordProcessor_BeforeExport(object sender, BeforeExportEventArgs e)
{
    if (e.DocumentFormat == DocumentFormat.FlatOpcTemplate)
    {
        //Restrict document property export:
        ((FlatOpcTemplateDocumentExporterOptions)e.Options).ExportedDocumentProperties = DocumentPropertyNames.None;
    }
}

Implements

See Also