With...End With
WITH object
- [statements]
- [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