关 键 字 参 考


With...EndWith

简化长对象类型变量的引用

With <表达式>
    语句
    ...
EndWith

参 数

表达式 必须是对象类型的表达式

备 注

With...EndWith 语句不能嵌套使用.

相 关 函 数

For...In...Next

函 数 示 例


Local $oExcel = ObjCreate("Excel.Application")
$oExcel.visible = 1
$oExcel.workbooks.add

With $oExcel.activesheet
    .cells(2, 2).value = 1
    .range("A1:B2" ).clear
EndWith

$oExcel.quit

provider with jb51.net (unicode)