Determines if charCode is the mnemonic character in text. The mnemonic character is the character imediately following the first instance of "&" in text
[Visual Basic] Public Shared Function IsMnemonic( _ ByVal charCode As Char, _ ByVal text As String _ ) As Boolean [C#] public static bool IsMnemonic( char charCode, string text ); [C++] public: static bool IsMnemonic( __wchar_t charCode, String* text ); [JScript] public static function IsMnemonic( charCode : Char, text : String ) : Boolean;
true if charCode is the mnemonic character.