Parameters
- flagMask
- Mask of flag.
Return Value
Returns true if specified flag is set.
private int _flags;
This field can be used for storing various boolean properties (CanSplitHorz, CanSplitVert etc), for example CanSplitHorz property defined as: public bool CanSplitHorz { get { return GetFlag(c_flgCanSplitVert); } set { SetFlag(c_flgCanSplitVert, value); } }