ZForge.Controls.XPTable.Models.Cell.Init C# (CSharp) Method

Init() private method

Initialise default values
private Init ( ) : void
return void
        private void Init()
        {
            this.text = null;
            this.data = null;
            this.rendererData = null;
            this.tag = null;
            this.row = null;
            this.index = -1;
            this.cellStyle = null;
            this.checkStyle = null;
            this.imageStyle = null;
            this.tooltipText = null;
            this.colspan = 1;

            this.state = (byte)(STATE_EDITABLE | STATE_ENABLED);
        }