Canguro.Controller.CommandServices.GetSelection C# (CSharp) Метод

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

If the Model has selected Items, they are put in one list and returned. Otherwise, the user is asked to select items. Returns a List of selected Items with at least one element.
public GetSelection ( ) : List
Результат List
        public List<Canguro.Model.Item> GetSelection()
        {
            List<Canguro.Model.Item> selection = new List<Canguro.Model.Item>();

            if (!getSelection(Model, selection))
            {
                GetMany();
                getSelection(Model, selection);
            }

            return selection;
        }

Same methods

CommandServices::GetSelection ( Model.Joint>.Dictionary joints, List lines, List areas ) : bool