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

Contains() public method

Determines whether the collection contains the view.
public Contains ( ViewBase item ) : bool
item ViewBase ViewBase reference.
return bool
        public override bool Contains(ViewBase item)
        {
            // Leaf never contains view
            return false;
        }