Bookmark.ExportAsFixedFormat Method

Saves the Bookmark in PDF or XPS format.

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word (in Microsoft.Office.Tools.Word.dll)

Syntax

'Declaration
Sub ExportAsFixedFormat ( _
    OutputFileName As String, _
    ExportFormat As WdExportFormat, _
    OpenAfterExport As Boolean, _
    OptimizeFor As WdExportOptimizeFor, _
    ExportCurrentPage As Boolean, _
    Item As WdExportItem, _
    IncludeDocProps As Boolean, _
    KeepIRM As Boolean, _
    CreateBookmarks As WdExportCreateBookmarks, _
    DocStructureTags As Boolean, _
    BitmapMissingFonts As Boolean, _
    UseISO19005_1 As Boolean, _
    ByRef FixedFormatExtClassPtr As Object _
)
void ExportAsFixedFormat(
    string OutputFileName,
    WdExportFormat ExportFormat,
    bool OpenAfterExport,
    WdExportOptimizeFor OptimizeFor,
    bool ExportCurrentPage,
    WdExportItem Item,
    bool IncludeDocProps,
    bool KeepIRM,
    WdExportCreateBookmarks CreateBookmarks,
    bool DocStructureTags,
    bool BitmapMissingFonts,
    bool UseISO19005_1,
    ref Object FixedFormatExtClassPtr
)

Parameters

  • OutputFileName
    Type: System.String
    The full path of the new PDF or XPS file.
  • OpenAfterExport
    Type: System.Boolean
    true to open the new file after exporting the Bookmark; otherwise, false.
  • ExportCurrentPage
    Type: System.Boolean
    true to export the entire page; false to export only the current selection.
  • IncludeDocProps
    Type: System.Boolean
    true to include document properties in the newly exported file; otherwise, false.
  • KeepIRM
    Type: System.Boolean
    true to copy Information Rights Management (IRM) permissions to an XPS document if the source document has IRM protections; otherwise, false. The default is true.
  • DocStructureTags
    Type: System.Boolean
    true to include extra data to help screen readers, such as information about the flow and logical organization of the content; otherwise, false. The default is true.
  • BitmapMissingFonts
    Type: System.Boolean
    true to include a bitmap of the text; false to reference the text font. Set this parameter to true when font licenses do not permit a font to be embedded in the PDF file. If you set this to false, the viewer's computer substitutes an appropriate font if the specified one is not available. The default is true.
  • UseISO19005_1
    Type: System.Boolean
    true to limit PDF usage to the PDF subset standardized as ISO 19005-1; otherwise, false. If you set this parameter to true, the resulting files are more reliably self-contained but may be larger or show more visual artifacts due to the restrictions of the format. The default is false.
  • FixedFormatExtClassPtr
    Type: System.Object%
    A pointer to an implementation of the IMsoDocExporter interface that enables the bookmark to be saved in a different fixed format. For more information, see Extending the Office (2007) Fixed-Format Export Feature.

Remarks

You can save as a PDF or XPS file from Word only after you install an add-in. For more information, search for "Enable support for other file formats, such as PDF and XPS" on Office Online.

.NET Framework Security

See Also

Reference

Bookmark Interface

Microsoft.Office.Tools.Word Namespace