Adf.Core.Panels.PanelItem.PanelItem C# (CSharp) Method

PanelItem() public method

public PanelItem ( PanelRow row ) : System.Collections.Generic
row PanelRow
return System.Collections.Generic
        public PanelItem(PanelRow row)
        {
            Row = row;
            Type = PanelItemType.EditableText;
            Width = Row.Panel.DefaultWidth;
            Height = 0;
            MaxLength = 0;
            Editable = true;
            Visible = true;
            Optional = false;
            Label = string.Empty;
            Text = string.Empty;
            RequiresValidation = true;
            AttachToPrevious = false;
            ToolTip = string.Empty;
            IDs = new List<string>();
        }
PanelItem