Visual Basic (Declaration) | |
---|---|
Public MustOverride Property PositiveMask As StatusBits |
C# | |
---|---|
public abstract StatusBits PositiveMask {get; set;} |
C++/CLI | |
---|---|
public: abstract property StatusBits PositiveMask { StatusBits get(); void set ( StatusBits value); } |
Property Value
a bitwise-OR of StatusBits enumeration valuesWhenever a bit in the PositiveMask property transitions from unset to set, the bit is added to the PositiveSummary property.
You can watch for this transition by polling the PositiveSummary property, or you can register for a property change event on the PositiveSummary property (subscribing to a property change event handler for the Measurement.Status object and watching for PositiveValue to change).
For an example, see the description of the Status class itself.
Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)