Home > lang > with 
 en fr de es it nl pl pt pt_BR mk sq ca hu tr ar fa id vi ko ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  See english version 
WITH
WITH Object
  ...
END WITH

Between the WITH and the END WITH instruction, an expression beginning with a point is referring to Object.

You can imbricate WITH ... END WITH structures.

Example

WITH hButton
  .Text = "Cancel"
END WITH

'is equivalent to

hButton.Text = "Cancel"

See also

Miscellaneous Control Structures, · END WITH