With...End With

From NSB App Studio
Revision as of 06:34, 12 May 2013 by JwellsNB (talk | contribs)
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 (Basic)

Rem With sample
'With statement allows accessing properties on a specified object

Dim theURL, theTitle
With document
   theURL = .URL
   .title = "New Title"
   theTitle = .title
  document.write(.URL & "<br>")
  document.write(.title & "<br>")
End With

Example (JavaScript)

// With sample
/* With statement allows accessing properties on a specified object */

var theURL, theTitle;
with (document) {
   theURL = URL;
   title = "New Title";
   theTitle = title;
  document.write(URL + "<br>");
  document.write(title + "<br>");
}

Output

File:///C:Browse.htm
New Title