Share via


Workbook.ExportAsFixedFormat Method (Excel)

The ExportAsFixedFormat method is used to publish a workbook to either the PDF or XPS format.

Version Information

추가된 버전: Excel 2007

Syntax

.ExportAsFixedFormat(Type, Filename, Quality, IncludeDocProperties, IgnorePrintAreas, From, To, OpenAfterPublish, FixedFormatExtClassPtr)

A variable that represents a Workbook, Sheet, Chart, or Range object.

Parameters

Name

Required/Optional

Data Type

Description

Type

필수

XlFixedFormatType

Can be either xlTypePDF or xlTypeXPS.

Filename

선택

Variant

A string that indicates the name of the file to be saved. You can include a full path or Excel saves the file in the current folder.

Quality

선택

Variant

Can be set to either xlQualityStandard or xlQualityMinimum.

IncludeDocProperties

선택

Variant

Set to True to indicate that document properties should be included or set to False to indicate that they are omitted.

IgnorePrintAreas

선택

Variant

If set to True, ignores any print areas set when publishing. If set to False, will use the print areas set when publishing.

From

선택

Variant

The number of the page at which to start publishing. If this argument is omitted, publishing starts at the beginning.

To

선택

Variant

The number of the last page to publish. If this argument is omitted, publishing ends with the last page

OpenAfterPublish

선택

Variant

If set to True displays file in viewer after it is published. If set to False the file is published but not displayed.

FixedFormatExtClassPtr

선택

Variant

Pointer to the FixedFormatExt class.

Example

The following example creates the PDF at standard quality in the current file’s directory and displays file in viewer after it is published.

참고

An error will occur if the PDF add-in is not currently installed.

ActiveWorkbook.ExportAsFixedFormat Type:=xlTypePDF FileName:="sales.pdf" Quality:=xlQualityStandard DisplayFileAfterPublish:=True 

참고 항목

개념

Workbook Object

Workbook Object Members