本示例使用 With 语句对某单一对象执行一系列的语句。MyObject
对象及其属性均为示范目的而采用了通用名称。
With MyObject .Height = 100 '
和MyObject.Height
一样等于100
。.Caption = "Hello World" '
和MyObject.Caption
一样等于"Hello World"
。With .Font
.Color = Red '
和MyObject.Font.Color
一样等于Red
。.Bold = True '
和MyObject.Font.Bold
一样等于True
。End With
End With
with sheet1
.range("a1")=...
.name=...
end with