OPC Studio User's Guide and Reference
GetBitArray Method (EnumerationData)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.DataTypeModel Namespace > EnumerationData Class : GetBitArray Method
The number of bits returned.

Valid values of this parameter are in the range from 0 to 2147483647 (Int32.MaxValue).

Returns the current enumeration value, represented in a bit array.
Syntax
'Declaration
 
Public Function GetBitArray( _
   ByVal bitCount As Integer _
) As BitArray
'Usage
 
Dim instance As EnumerationData
Dim bitCount As Integer
Dim value As BitArray
 
value = instance.GetBitArray(bitCount)
public BitArray GetBitArray( 
   int bitCount
)
public:
BitArray^ GetBitArray( 
   int bitCount
) 

Parameters

bitCount
The number of bits returned.

Valid values of this parameter are in the range from 0 to 2147483647 (Int32.MaxValue).

Return Value

The current enumeration value, represented in a bit array.

This method never returns null (Nothing in Visual Basic).

Remarks
The returned bit array may not contain all the significant bits if the bitCount is too small.
Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also