TBApiIsTouchingKeyboard API Call

 

Description

Indicates if the on-screen virtual keyboard is being touched.

Parameters

None.

Returns

True if the on-screen masked keyboard is touched.

Notes

None.

 

Visual C++ Declaration/example

 

BOOL TBAPI TBApiIsTouchingKeyboard();

 

if (TBApiIsTouchingKeyboard () )

            AfxMessageBox( “On-screen keyboard, masked area is being touched” );

 

Visual Basic Declaration/example

 

Public Declare Function TBApiIsTouchingKeyboard Lib "TBapi" Alias "_DLL_TBApiIsTouchingKeyboard@0" () As Long

 

If TBApiIsTouchingKeyboard = true then

            MsgBox “On-screen keyboard, masked area is being touched”

End if