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)
}
属性
horizontal |
水平放置的页数。 如果使用百分比刻度,则此值可以为 |
scale | 打印页面缩放值可以介于 10 至 400 之间。 如果指定了适合页高或宽,则此值可以为 |
vertical |
垂直放置的页数。 如果使用百分比刻度,则此值可以为 |
属性详细信息
horizontalFitToPages
水平放置的页数。 如果使用百分比刻度,则此值可以为 null
。
horizontalFitToPages?: number;
属性值
number
scale
打印页面缩放值可以介于 10 至 400 之间。 如果指定了适合页高或宽,则此值可以为 null
。
scale?: number;
属性值
number
verticalFitToPages
垂直放置的页数。 如果使用百分比刻度,则此值可以为 null
。
verticalFitToPages?: number;
属性值
number