AdvancedDataGridView.TreeGridCell.Sited C# (CSharp) Method

Sited() protected method

protected Sited ( ) : void
return void
        protected internal virtual void Sited()
        {
            // when we are added to the DGV we can realize our style
            this.IsSited = true;

            // remember what the previous padding size is so it can be restored when unsiting
            this._previousPadding = this.Style.Padding;

            this.UpdateStyle();
        }