ComponentFactory.Quicksilver.Layout.MetaElementCollection.Contains C# (CSharp) Method

Contains() public method

Determines whether the collection contains a specific element.
public Contains ( UIElement element ) : bool
element UIElement The UIElement to locate in the collection.
return bool
        public override bool Contains(UIElement element)
        {
            if (_isItemsHost)
                return base.Contains(element);
            else
                return _externalChildren.Contains(element);
        }