Adf.Web.UI.BlankItem.Create C# (CSharp) Method

Create() public static method

Add a blank or space into the item control of Adf.Web.UI.BasePanelItem.
public static Create ( ) : BlankItem
return BlankItem
        public static BlankItem Create()
        {
            Label blank = new Label();

            blank.Text = " ";

            return new BlankItem(blank);
        }