With...End With

From NSB App Studio
Revision as of 21:15, 8 July 2012 by Brendon (talk | contribs) (Created page with "WITH object <br /> :::[statements] <br /> END WITH '''Description''' WITH allows you to do a series of operations on an object without having to name the object each time. ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WITH object

[statements]

END WITH

Description

WITH allows you to do a series of operations on an object without having to name the object each time.

Example

REM WITH sample
WITH document
  PRINT .URL
  PRINT .title
  PRINT .doctype
END WITH

Output

File:///C:Browse.htm
Test
[objectDocumentType]

Related Items

CLASS