Method FastHasFlags
- Namespace
- Terminal.Gui.EnumExtensions
- Assembly
- Terminal.Gui.dll
FastHasFlags(DimAutoStyle, DimAutoStyle)
Determines if the specified flags are set in the current value of this DimAutoStyle .
public static bool FastHasFlags(this DimAutoStyle e, DimAutoStyle checkFlags)
Parameters
e
DimAutoStylecheckFlags
DimAutoStyle
Returns
- bool
True, if all flags present in
checkFlags
are also present in the current value of the DimAutoStyle.
Otherwise false.
Remarks
NO VALIDATION IS PERFORMED!
FastHasFlags(DimAutoStyle, int)
Determines if the specified mask bits are set in the current value of this DimAutoStyle.
public static bool FastHasFlags(this DimAutoStyle e, int mask)
Parameters
e
DimAutoStyleThe DimAutoStyle value to check against the
mask
value.mask
intA mask to apply to the current value.
Returns
- bool
True, if all bits set to 1 in the mask are also set to 1 in the current value of the DimAutoStyle.
Otherwise false.
Remarks
NO VALIDATION IS PERFORMED!