Grid.GridCell.ClearFlags C# (CSharp) Method

ClearFlags() public method

public ClearFlags ( CellFlags flags ) : void
flags CellFlags
return void
        public void ClearFlags(CellFlags flags)
        {
            this.flags &= (byte)~((byte)flags);
        }