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