If the "Sort" configurator isn't set, then the text is added at the end of the list, otherwise the text is inserted to the corresponding position.
sOption | (String) added option in the form val=text, where: - val represents the hidden value of the option (identifier) - text represents the displayed text of the option itself and that can be in the form of Macro expression $.text |
---|
At first it clears the list, then adds three rows and then selects (by index) the third row.
Consequentially it finds the selected text, hidden value and index.
Then the text that is on the 2nd row and finally the number of rows in the list is detected.
var oCombo = pMe.Items("/WCombo");
oCombo.RemoveOptions();
oCombo.AddOption("val1=First");
oCombo.AddOption("val2=Second");
oCombo.AddOption("val3=Third");
var sSelText = oCombo.SelectedText;
var sSelValue = oCombo.SelectedValue;
var nSelIndex = oCombo.SelectedIndex;
var sText = oCombo.Options(1);
var nCount = oCombo.OptionsCount;