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

IndexOf() public method

Determines the index of a specific item in the collection.
public IndexOf ( UIElement element ) : int
element UIElement The UIElement to locate in the collection.
return int
        public override int IndexOf(UIElement element)
        {
            if (_isItemsHost)
                return base.IndexOf(element);
            else
                return _externalChildren.IndexOf(element);
        }