XPTable.Models.Cell.SetSelected C# (CSharp) Method

SetSelected() private method

Sets whether the Cell is selected
private SetSelected ( bool selected ) : void
selected bool A boolean value that specifies whether the /// cell is selected
return void
        internal void SetSelected(bool selected)
        {
            this.SetState(STATE_SELECTED, selected);
        }