# 应用程序编程接口

页面设置

# paper

设置纸张

editor.pagesetup.paper(value: { 
    height: string, 
    width: string 
})
1
2
3
4

提示

value的取值:

  • height:纸张高度
  • width:纸张宽度

# margin

设置页边距

editor.pagesetup.margin(value: { 
    top: number, 
    right: number, 
    bottom: number, 
    left: number 
})
1
2
3
4
5
6

提示

value的取值:

  • top:纸张上边距
  • right:纸张右边距
  • bottom:纸张下边距
  • left:纸张左边距