Canguro.Commands.Forms.ReportOptionsDialog.GetSelectedOptions C# (CSharp) Method

GetSelectedOptions() public method

public GetSelectedOptions ( ) : List
return List
        public List<ReportOptions> GetSelectedOptions()
        {
            List<ReportOptions> options = new List<ReportOptions>();
            foreach (string opt in optionsCheckedListBox.CheckedItems)
                options.Add(allReports[opt]);
            return options;
        }