NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

9.4 With statement

The With statement allows multiple references to an expression's members without having to specify the expression multiple times. The expression is evaluated once, upon entry to the block. Within the With statement block, an expression starting with a dot or an exclamation point is evaluated as if the expression preceded it.

WithStatement ::=
 With Expression StatementTerminator
 [ Block ]
 End With StatementTerminator