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

Insert() public method

Insert a control at a specified index position
public Insert ( int index, IControlHabanero value ) : void
index int The index position at which to insert
value IControlHabanero The control to insert
return void
        public void Insert(int index, IControlHabanero value)
        {
            throw new NotImplementedException("This is not supported for windows");
            //_col.Insert(index, value);
        }