Habanero.Faces.Win.ListBoxWin.ListBoxObjectCollectionWin.this C# (CSharp) Method

this() public method

Retrieves the item at the specified index within the collection
public this ( int index ) : object
index int The index of the item in the collection to retrieve
return object
            public object this[int index]
            {
                get { return _items[index]; }
                set { _items[index] = value; }
            }