Returns the value of flag. The object has private field:
Copy CodeC#
This field can be used for storing various boolean properties
(CanSplitHorz, CanSplitVert etc), for example CanSplitHorz property defined as:
Copy CodeC#
public bool CanSplitHorz
{
get { return GetFlag(c_flgCanSplitVert); }
set { SetFlag(c_flgCanSplitVert, value); }
} |
Namespace:
C1.C1Preview
Assembly:
C1.C1Report.2 (in C1.C1Report.2.dll)
Syntax
C# |
---|
protected bool GetFlag(
int flagMask
) |
Visual Basic |
---|
Protected Function GetFlag ( _
flagMask As Integer _
) As Boolean |
Return Value
Returns true if specified flag is set.
See Also