Whith...End With Statement

<< Click to Display Table of Contents >>

Navigation:  Control Commands >

Whith...End With Statement

Description

Executes a series of statements making repeated reference to a single object or structure.

Syntax

Whith object
   [statements]
End With

 

The While...Wend statement syntax has these parts:

 

Part

Description

object

Required. Variable or expression. Can evaluate to any data type, including elementary types.

statements

Optional. One or more statements between With and End With that run on object.

Remarks

With...End With allows you to perform a series of statements on a specified object without requalifying the name of the object.
Nesting Structures. Quick3270 don’t allow to nest With...End With structures.