如果自动调整以其他国家/地区的标准纸张大小(例如,A4)来设置格式的文档,以便以用户所在的国家/地区的标准纸张大小(例如,信件)来正确地打印文档,则该值为
True。
Boolean 类型,可读写。
语法
表达式.MapPaperSize
表达式 一个代表 Application 对象的变量。
示例
本示例判断 ET 是否能按照国家/地区设置来调整纸张大小,并通知用户。
示例代码 |
function UseMapPaperSize(){
// Determine setting and notify user.
if(Application.MapPaperSize == true){
MsgBox("ET automatically adjusts the paper size according to the country/region setting.")
}
else{
MsgBox("ET does not automatically adjusts the paper size according to the country/region setting.")
}
}
|