Skip to main content
All docs
V25.1
  • SubDocument.GetFlatOpcMacroEnabledTemplateBytes(DocumentRange) Method

    Exports the range content in FlatOpcMacroEnabledTemplate (Microsoft Word XML Macro-Enabled Template, .xml) format and returns a byte array with this content.

    Namespace: DevExpress.XtraRichEdit.API.Native

    Assembly: DevExpress.RichEdit.v25.1.Core.dll

    NuGet Package: DevExpress.RichEdit.Core

    Declaration

    byte[] GetFlatOpcMacroEnabledTemplateBytes(
        DocumentRange range
    )

    Parameters

    Name Type Description
    range DocumentRange

    The range to convert to FlatOpcMacroEnabledTemplate format.

    Returns

    Type Description
    Byte[]

    The range content in FlatOpcMacroEnabledTemplate format.

    Remarks

    If you work with a selection range, make sure that the GetFlatOpcMacroEnabledTemplateBytes method is enclosed with the DocumentRange.BeginUpdateDocument - DocumentRange.EndUpdateDocument method pair. Otherwise, an incorrect document model might be selected, and the “Error: specified document position or range belongs to other document or subdocument” exception is thrown.

    To retrieve section settings, make sure that the range contains the last section’s paragraph. Otherwise, the section settings are reset to default.

    The code sample below retrieves the range content in FlatOpcMacroEnabledTemplate format:

    using (RichEditDocumentServer wordProcessor = new RichEditDocumentServer())
    {
        wordProcessor.LoadDocument("FirstLook.docx");
        Document document = wordProcessor.Document;
    
        byte[] bytes = document.GetFlatOpcMacroEnabledTemplateBytes(document.Range);
        File.WriteAllBytes(@"D:\testdoc.xml", bytes);
    }
    
    See Also