ComponentFactory.Krypton.Toolkit.ViewLeaf.ContainsRecurse C# (CSharp) Method

ContainsRecurse() public method

Determines whether any part of the view hierarchy is the specified view.
public ContainsRecurse ( ViewBase item ) : bool
item ViewBase ViewBase reference.
return bool
        public override bool ContainsRecurse(ViewBase item)
        {
            // Only need to check against ourself
            return (this == item);
        }