Displays or hides the Soft Input Panel (SIP) on Windows CE devices.
object.ShowSIP ( [Visible] ) |
- Visible
- Optional. A Boolean that represents the Show state.
Boolean
Show is a boolean representing the Show state of the SIP.
If Show is True, the SIP is displayed.
If Show is False, the SIP is hidden.
If not specified, Show is TRUE. [Optional].
If Show is True, the SIP is displayed.
If Show is False, the SIP is hidden.
If not specified, Show is TRUE. [Optional].
Toggles the Soft Input Panel on CE devices.
ShowSIP Example (VBScript) | Copy Code |
---|---|
'Global Dim blnSIP blnSIP = False Sub ShowSIPDialog blnSIP = Not blnSIP CommonDialog.ShowSIP(blnSIP) End Sub |