Habanero.Faces.Win.ControlCollectionWin.this C# (CSharp) Method

this() public method

Indicates the Control at the specified indexed location in the collection
public this ( int index ) : IControlHabanero
index int
return IControlHabanero
        public IControlHabanero this[int index]
        {
            get
            {
                var control = _col[index];
                return control as IControlHabanero ?? new WinFormsControlAdapter(control);
            }
        }