Beispiel #1
0
        internal void SwapSelectionGroup(SelectableElement other)
        {
            int temp = groups;

            groups       = other.groups;
            other.groups = temp;
        }
Beispiel #2
0
 // This copies properties to any other element
 public void CopyPropertiesTo(SelectableElement element)
 {
     element.groups   = this.groups;
     element.Selected = this.selected;
     base.CopyPropertiesTo(element);
 }