Gets the number of OptionElement objects in this SelectElement.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Field Value
The number of options available in this SelectElement.Examples
// iterate over the options within a SelectElement for (int i = 0; i < selectElement.OptionCount; i++) { OptionElement optionElement = selectElement.GetOptionElement(i); }
See Also