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

GetState() private method

Returns the state represented by the specified state flag
private GetState ( int flag ) : bool
flag int A flag that represents the state to return
return bool
        internal bool GetState(int flag)
        {
            return ((this.state & flag) != 0);
        }