Keyword Reference

With...EndWith

オブジェクト形式の変数の多重参照を短く書くために使用されます。

With <expression>
    statements
    ...
EndWith

 

パラメータ

expression オブジェクト形式の表現でなければなりません

 

注意

With...EndWith句は入れ子構造にできません。

 

関連

For...In...Next

 


$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