The properties in Microsoft FrontPage Page object model are based on the properties in Microsoft Internet Explorer 4.0. Click any of the links in the following table for more detailed information on the specified property.
Note Some of the properties have more than one topic associated with it. For more information about individual properties, consult The Microsoft Developer Network.
Note For information on the IFPStyleState object and its properties, see FrontPage Programmability Items. This hyperlink goes to the web. You can switch back to help at any time.
accessKey | alt |
Return to top | |
background (Attributes)
BaseHref border |
borderBottomColor |
Return to top | |
cancelBubble
clientInformation |
code codeBase (Base URL for the Application) codeBas (Location of Object Implementation) |
Return to top | |
dataFld | dialogLeft |
Return to top | |
elements | event |
Return to top | |
face | fontStyle |
Return to top | |
hash | href (Baseline URL for Relative Links) |
Return to top | |
id | innerText |
Return to top | |
lang | linkColor
location |
Return to top | |
margin | name (Window or Frame) |
Return to top | |
offsetHeight
onbeforeunload onbeforeunload onbeforeunload onchange (File Input) onchange (Text Area) onchange (Selection) onchange (Button) onchange (Text Input) onclick (Document2) onclick (IHTMLElement) ondblclick (Document2) ondblclick (IHTMLElement) ondragstart (Document2) ondragstart (IHTMLElement) onfocus (Window) onkeydown (Document2) onkeydown (IHTMLElement) onkeypress (Document2) onkeypress (IHTMLElement) onkeyup (Document2) onkeyup (IHTMLElement) onload (Image) |
onmousedown (Document2) onmousedown (IHTMLElement) onmousemove (Document2) onmousemove (IHTMLElement) onmouseout (Document2) onmouseout (IHTMLElement) onmouseover (Document2) onmouseover (IHTMLElement) onmouseup (Document2) onmouseup (IHTMLElement) onreadystatechange (Table) onreadystatechange (Link) onreadystatechange (Object) onreadystatechange (Document) onreadystatechange (Style) onresize onscroll (Window) onscroll (Text Container) onselect (Input File) onselect (Text Area) onselect (Input Text) onselect (Body) onselectstart (Document2) onselectstart (IHTMLElement) |
Return to top | |
padding | parentWindow
plugins |
Return to top | |
readOnly (Style sheet) | rightMargin |
Return to top | |
screen | selection
styleFloat |
Return to top | |
tabIndex | tFoot
top |
Return to top | |
units | vlinkColor
vrml (ImgElement) vrml (InputImage) |
Note The FrontPage Page Object Model Help refers to objects, methods, properties and events that are defined in the Internet Explorer 4.0 dynamic HTML Help file (HTMLRef.chm). The examples and remarks given in this Help file were originally created for use with the JavaScript programming language. There are some differences between the JavaScript language and Microsoft Visual Basic. For example, HTMLRef.chm mentions checking for NULL when a property or method returns an object that does not exist. This is incorrect for Visual Basic. In the Visual Basic Language, the type Nothing is returned in this case. Visual Basic users can check an object for Nothing by using the Is keyword.
For example,If MyObject Is Nothing Then
Also, many of the examples are given in JavaScript instead of Visual Basic. JavaScript is similar to the C++ language in structure and format.
The following is an example ofJavaScript.
var Table = document.all.tags("table").item(0);
var TableCell = table.rows(3).cells(2);
TableCell.innertext = ""
While (p != NULL)
{
TableCell.innerText = p.tagName;
var p = p.parentElement
TableCell.innertext = p.tagName;
TableCell.innertext += "+";
TableCell.innertext += TableCell.innertext;
}
The following is the equivalent example in Visual Basic.
Sub SetText()
Set TableCell = table.Rows(3).Cells(2)
Set p = TableCell
TableCell.innerText = ""
Do While Not p Is Nothing
TableCell.innerText = p.tagName & "+" & TableCell.innerText
Set p = p.parentElement
Loop
End Sub