Reflection
SetAttribute Method


The name of the attribute to set.
The new value of this attribute.
Sets the value of the named attribute on the element.
Syntax
'Declaration
 
Sub SetAttribute( _
   ByVal attributeName As String, _
   ByVal value As String _
) 
'Usage
 
Dim instance As IWebElement
Dim attributeName As String
Dim value As String
 
instance.SetAttribute(attributeName, value)
void SetAttribute( 
   string attributeName,
   string value
)

Parameters

attributeName
The name of the attribute to set.
value
The new value of this attribute.
See Also