C# Class ComponentFactory.Krypton.Toolkit.BoolFlags31

Manages a collection of 31 boolean flags.
Show file Open project: Cocotteseb/Krypton Class Usage Examples

Public Methods

Method Description
AreFlagsSet ( int flags ) : bool

Are all the provided flags set to true.

ClearFlags ( int flags ) : int

Clear all the provided flags to false.

SetFlags ( int flags ) : int

Set all the provided flags to true.

Method Details

AreFlagsSet() public method

Are all the provided flags set to true.
public AreFlagsSet ( int flags ) : bool
flags int Flags to test.
return bool

ClearFlags() public method

Clear all the provided flags to false.
public ClearFlags ( int flags ) : int
flags int Flags to clear.
return int

SetFlags() public method

Set all the provided flags to true.
public SetFlags ( int flags ) : int
flags int Flags to set.
return int