OPC Studio User's Guide and Reference
FindSymbolName Method



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA Namespace > UACodeBits Class : FindSymbolName Method
Code bits to be looked up.
Symbol name that corresponds to numerical value.

The value of this parameter can be null (Nothing in Visual Basic).

Looks up a symbolic string assigned to well-known code bits combination.
Syntax
'Declaration
 
Public Shared Function FindSymbolName( _
   ByVal codeBits As Integer, _
   ByRef symbolName As String _
) As Boolean
'Usage
 
Dim codeBits As Integer
Dim symbolName As String
Dim value As Boolean
 
value = UACodeBits.FindSymbolName(codeBits, symbolName)
public static bool FindSymbolName( 
   int codeBits,
   out string symbolName
)
public:
static bool FindSymbolName( 
   int codeBits,
   [Out] String^ symbolName
) 

Parameters

codeBits
Code bits to be looked up.
symbolName
Symbol name that corresponds to numerical value.

The value of this parameter can be null (Nothing in Visual Basic).

Return Value

True if there is a symbol name for the value, and symbolName has been filled with corresponding string; false otherwise.
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