Microsoft® Visual Basic® Scripting Edition With Statement |
Language Reference Version 5 |
Executes a series of statements on a single object.
With object
statements
End WithThe With statement syntax has these parts:
Part Description object Required. Name of an object or a function that returns an object. statements Required. One or more statements to be executed on object.
The With statement allows you to perform a series of statements on a specified object without requalifying the name of the object. For example, to change a number of different properties on a single object, place the property assignment statements within the With control structure, referring to the object once instead of referring to it with each property assignment. The following example illustrates use of the With statement to assign values to several properties of the same object.While property manipulation is an important aspect of With functionality, it is not the only use. Any legal code can be used within a With block.
With MyLabel .Height = 2000 .Width = 2000 .Caption = "This is MyLabel" End With
Note Once a With block is entered, object can't be changed. As a result, you can't use a single With statement to affect a number of different objects. | |
Important Do not jump into or out of With blocks. If statements in a With block are executed, but either the With or End With statement is not executed, you may get errors or unpredictable behavior. | |