Text Property



 
The Text property contains the text displayed in the address field.


Syntax

    [string=] document.all["id_name"].Text
    
Possible Values
    String that retrieves the text.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the Text property when the link is clicked.

    <html>
    <head>
    <SCRIPT TYPE="text/javascript">
    function ShowProp()
    {
       alert(document.all['URLComboBox'].Text);
    }
    </SCRIPT>
    </head>
    <body>
    <OBJECT ID="URLComboBox" width="300" height="22px"
    CLASSID="CLSID:973BD82B-0F81-4C42-A222-C42CA47DA1D3">
      <PARAM NAME="BackColor" value="16777215">
      <PARAM NAME="FontName" VALUE="Tahoma">
      <PARAM NAME="FontSize" VALUE="8.00">
      <PARAM NAME="FontBold" VALUE="0">
      <PARAM NAME="FontItalic" VALUE="0">
      <PARAM NAME="ForeColor" VALUE="65280">
    </OBJECT>
    <br><br>
    <a href="javascript:ShowProp()">Show Text property</a>
    </body>
    </html>
    

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top