FairyGUI.TreeView.RemoveSelection C# (CSharp) Method

RemoveSelection() public method

public RemoveSelection ( FairyGUI.TreeNode node ) : void
node FairyGUI.TreeNode
return void
        public void RemoveSelection(TreeNode node)
        {
            list.RemoveSelection(list.GetChildIndex(node.cell));
        }

Usage Example

 static public int RemoveSelection(IntPtr l)
 {
     try {
         FairyGUI.TreeView self = (FairyGUI.TreeView)checkSelf(l);
         FairyGUI.TreeNode a1;
         checkType(l, 2, out a1);
         self.RemoveSelection(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.TreeView::RemoveSelection