public override bool Processs(Entity.EntityParent theOwner) { foreach (IBTreeNode node in mChildren) { if (node != null) { node.Processs(theOwner); } } return(mbReturn); }
public override bool Processs(Entity.EntityParent theOwner) { //return base.Processs(theOwner); foreach (IBTreeNode node in mChildren) { if (node != null) { if (node.Processs(theOwner)) { return(true); } } } return(false); }
public override bool Processs(Entity.EntityParent theOwner) { return(base.Processs(theOwner)); }