XPTable.Models.Cell.GetState C# (CSharp) 메소드

GetState() 개인적인 메소드

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