Desktop Functions: Smart Device Functions:
|
SHSipPreference (aygshell)
aygshell is for smart devices, not desktop Windows. Therefore, this information only applies to code using the .NET Compact Framework. To see if information for SHSipPreference in other DLLs exists, click on Find References to the right. C# Signature:
[DllImport("aygshell.dll", SetLastError=true)] C# User-Defined Types
[Flags()] VB Signature:
Declare Function SHSipPreference Lib "aygshell.dll" (hwnd as IntPtr, st as Integer) As Bool Notes:SIP_UP A request to display the input panel. Any pending SIP_DOWN requests are ignored. SIP_DOWN A request to hide the input panel. When this value is used, a timer is set and the input panel is lowered only after the timer message is received. This approach prevents the input panel from flashing when one control requests SIP_DOWN and another control immediately requests SIP_UP. SIP_FORCEDOWN forces the input panel to be hidden immediately, without setting a timer. If you want the input panel hidden and are sure there will be no SIP_UP requests — for example, because your application is a full-screen game — use this value. SIP_UNCHANGED tells the system to ignore any pending down requests. That is, if SHSipPreference is called with the SIP_DOWN flag, the system sets a timer and after the timer fires, the input panel is lowered. However, if you call SIP_UNCHANGED before the timer fires, then the input panel will stay in its current location. Tips & Tricks:Please add some! Sample Code:
[DllImport("aygshell.dll", SetLastError=true)] Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|