create method
Initializes a new option element.
Syntax
IHTMLOptionElement retVal = object.create(text, value, defaultselected, selected);
Parameters
text [in, optional]
Type: VARIANTA VARIANT of type VT_BSTR that specifies the text of the element.
value [in, optional]
Type: VARIANTA VARIANT of type VT_BSTR that specifies the value of the element.
defaultselected [in, optional]
Type: VARIANTA VARIANT of type VT_BOOL that indicates whether this option is selected by default. If VARIANT_TRUE, this option is selected by default; otherwise, it is not.
selected [in, optional]
Type: VARIANTA VARIANT of type VT_BOOL that indicates whether this is the default option in the select block. If VARIANT_TRUE, this option is the default; otherwise, it is not.
Standards information
There are no standards that apply here.
Remarks
You can add the element to a select block by using the IHTMLAreasCollection::add method.