SilverlightMappingToolBasic.UI.SuperGraph.View.NodeControlSupportClasses.NodeControl.GetAllNodeControls C# (CSharp) Method

GetAllNodeControls() public method

public GetAllNodeControls ( ) : IEnumerable
return IEnumerable
        public IEnumerable<NodeControl> GetAllNodeControls()
        {
            var output = new List<NodeControl> {this};
            output.AddRange(GetAllChildNodeControls());
            return output;
        }

Usage Example

Esempio n. 1
0
 public void DeSelectAllChildsOfNode(NodeControl nodeControl)
 {
     foreach (var control in nodeControl.GetAllNodeControls())
     {
         RemoveNode(control);
     }
 }
All Usage Examples Of SilverlightMappingToolBasic.UI.SuperGraph.View.NodeControlSupportClasses.NodeControl::GetAllNodeControls