ArcPad Scripting Object Model
ShowSIP Method
See Also  Example  Send comments on this topic.
Visible
Optional. A Boolean that represents the Show state.
CommonDialog Object : ShowSIP Method

Glossary Item Box

Description

Displays or hides the Soft Input Panel (SIP) on Windows CE devices.

Syntax

object.ShowSIP ( [Visible] )

Parameters

Visible
Optional. A Boolean that represents the Show state.

Return Type

Boolean

Remarks

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].

Example

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

See Also

© 2012 All Rights Reserved.