ExcelScript.PageLayoutZoomOptions interface

ページズームプロパティを表します。

注釈

/**
 * This script changes the scale-to-fit of the page layout.
 */
function main(workbook: ExcelScript.Workbook) {
    // Get the current worksheet.
    const sheet = workbook.getActiveWorksheet();

    // Scale the layout to half size for printing.
    const layout = sheet.getPageLayout();
    const zoomOptions: ExcelScript.PageLayoutZoomOptions = {
        scale: 50
    }
    layout.setZoom(zoomOptions)
}

プロパティ

horizontalFitToPages

横方向に合わせるページ数。 この値は、パーセンテージスケールが使用されている場合に null できます。

scale

印刷ページのスケール値は 10 から 400 までです。 この値は、ページの高さまたは幅に合わせて指定した場合に null できます。

verticalFitToPages

縦方向に合わせるページ数。 この値は、パーセンテージスケールが使用されている場合に null できます。

プロパティの詳細

horizontalFitToPages

横方向に合わせるページ数。 この値は、パーセンテージスケールが使用されている場合に null できます。

horizontalFitToPages?: number;

プロパティ値

number

scale

印刷ページのスケール値は 10 から 400 までです。 この値は、ページの高さまたは幅に合わせて指定した場合に null できます。

scale?: number;

プロパティ値

number

verticalFitToPages

縦方向に合わせるページ数。 この値は、パーセンテージスケールが使用されている場合に null できます。

verticalFitToPages?: number;

プロパティ値

number