ARCed.Controls.DatabaseObjectListBox.PopulateList C# (CSharp) Метод

PopulateList() публичный Метод

Clears and populates the listbox on the control with the given collection of objects
public PopulateList ( List objectList ) : void
objectList List Collection of items
Результат void
        public void PopulateList(List<dynamic> objectList)
        {
            ControlHelper.Populate(this.listBoxObjects, objectList, false);
        }