Adf.Web.UI.BasePanelItem.InsertControl C# (CSharp) Method

InsertControl() public method

Insert the System.Web.UI.Control to item control list at the specified index
public InsertControl ( int index, Control control ) : void
index int index at which item should be added
control System.Web.UI.Control The that defines the control which will be added.
return void
        public void InsertControl(int index, Control control)
        {
            _itemControls.Insert(index, control);
        }