GetProperty Method
Gets the value associated with a user-defined property name.
Syntax
object.GetProperty( _
sProperty As String, _
vValue As Variant)
Parameters
- sProperty
- Required. A String that specifies the exact name of the property to get.
- vValue
- Required. A variable that receives the current value of the property.
Remarks
The property name specified in sProperty is case-sensitive.
The WebBrowser object delegates this method to the top-level frame. If no frame exists, it returns E_FAIL.
This feature is provided so that objects can save state across pages. There are no pre-defined property names. See PutProperty for more information.
Applies To
InternetExplorer, WebBrowser
See Also