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

AddControl() public method

Add the System.Web.UI.WebControls.WebControl to item control list. Used to hold the object of child controls within panel.
public AddControl ( WebControl control ) : void
control System.Web.UI.WebControls.WebControl The that defines the controls which will be added.
return void
        public void AddControl(WebControl control)
        {
            _itemControls.Add(control);
        }