标签:style blog color io ar sp div on cti
VBScript创建一个对象实例的语法:
set variablename = CreateObject("Objectname")
其中,variablename是想要用来保存对象引用的变量,objectname是想要创建的对象的类型。set告诉VBScript要保存的是一个对象的引用,而不是一个常规值。
在脚本或Word宏中,经常会看到类似下面的结构
ActiveDocument.PageSetup.Orientation = wdOrientLandscape ActiveDocument.PageSetup.TopMargin = InchesToPoints(0.5) ActiveDocument.PageSetup.BottomMargin = InchesToPoints(0.5) ActiveDocument.PageSetup.PageWidth = InchesToPoints(11)
在该示例中,ActiveDocument对象返回一个PageSetup对象。
通过保存对PageSetup对象的一个引用,可在创建这段脚本时减少很多录入工作,如下所示
set ps = ActiveDocument.PageSetup ps.Orientation = wdOrientLandscape ps.TopMargin = InchesToPoints(0.5) ps.BottomMargin = InchesToPoints(0.5) ps.PageWidth = InchesToPoints(11)
VBScript有种特别的程序构造,叫With语句。用With语句重写上面的例子:
with ActiveDocument.PageSetup .Orientation = wdOrientLandscape .TopMargin = InchesToPoints(0.5) .BottomMargin = InchesToPoints(0.5) .PageWidth = InchesToPoints(11) end with
通过将保存对象的变量值设置为Nothing,可明确释放该对象。
标签:style blog color io ar sp div on cti
原文地址:http://www.cnblogs.com/DigiK0ne/p/4018034.html