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.StringThe full path of the new PDF or XPS file.
ExportFormat
Type: WdExportFormatOne of the WdExportFormat values that specifies whether to save the Bookmark in PDF or XPS format.
OpenAfterExport
Type: System.Booleantrue to open the new file after exporting the Bookmark; otherwise, false.
OptimizeFor
Type: WdExportOptimizeForOne of the WdExportOptimizeFor values that specifies whether to optimize for screen or print.
ExportCurrentPage
Type: System.Booleantrue to export the entire page; false to export only the current selection.
Item
Type: WdExportItemOne of the WdExportItem values that specifies whether the export process includes text only or includes text with markup.
IncludeDocProps
Type: System.Booleantrue to include document properties in the newly exported file; otherwise, false.
KeepIRM
Type: System.Booleantrue to copy Information Rights Management (IRM) permissions to an XPS document if the source document has IRM protections; otherwise, false. The default is true.
CreateBookmarks
Type: WdExportCreateBookmarksOne of the WdExportCreateBookmarks values that specifies whether to export bookmarks and the type of bookmarks to export.
DocStructureTags
Type: System.Booleantrue 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.Booleantrue 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.Booleantrue 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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.