Ecolab.Pages.GeneralTabPage.GetCurrencyoptions C# (CSharp) Method

GetCurrencyoptions() public method

Gets the currencyoptions.
public GetCurrencyoptions ( ) : ArrayList
return System.Collections.ArrayList
        public ArrayList GetCurrencyoptions()
        {
            ArrayList list = new ArrayList();
            HtmlSelect currencyDropDown = GetHtmlControl<HtmlSelect>(guiMap, "SelectPreferredCurrency");
            ICollection<Element> options = currencyDropDown.ChildNodes;
            foreach (Element option in options)
            {
                list.Add(option.InnerText);
            }
            return list;
        }