'Declaration
Public Shared Function FindCodeBits( _ ByVal symbolName As String, _ ByRef codeBits As Integer _ ) As Boolean
'Usage
Dim symbolName As String Dim codeBits As Integer Dim value As Boolean value = UACodeBits.FindCodeBits(symbolName, codeBits)
public static bool FindCodeBits( string symbolName, out int codeBits )
public: static bool FindCodeBits( String^ symbolName, [Out] int codeBits )
Parameters
- symbolName
- Symbol name for the code bits.
- codeBits
- Code bits that correspond to the symbol.
Return Value
True
if the symbol has been found, and codeBits
filled with corresponding value; false
otherwise