本示例使用 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 WithEnd With
with sheet1
.range("a1")=...
.name=...
end with