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

AddLabelControl() public method

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