QuickOPC User's Guide and Reference
OpaqueDataType Constructor(String,String,Int32)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.DataTypeModel Namespace > OpaqueDataType Class > OpaqueDataType Constructor : OpaqueDataType Constructor(String,String,Int32)
The short descriptive name of the data type.
The full name of the data type.
How many bits the opaque value occupies. Equals to -1 when unknown.
Initializes a new instance of the class. Initializes a new instance of the class, with given name, full name, and size in bits.
Syntax
'Declaration
 
Public Function New( _
   ByVal name As String, _
   ByVal fullName As String, _
   ByVal sizeInBits As Integer _
)
'Usage
 
Dim name As String
Dim fullName As String
Dim sizeInBits As Integer
 
Dim instance As New OpaqueDataType(name, fullName, sizeInBits)
public OpaqueDataType( 
   string name,
   string fullName,
   int sizeInBits
)
public:
OpaqueDataType( 
   String^ name,
   String^ fullName,
   int sizeInBits
)

Parameters

name
The short descriptive name of the data type.
fullName
The full name of the data type.
sizeInBits
How many bits the opaque value occupies. Equals to -1 when unknown.
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