GrapeCity MultiRow Windows Forms Documentation
HideTouchKeyboard Method
Example 


Invoke this method to hide the displayed touch keyboard of OS.
Syntax
Public Sub HideTouchKeyboard() 
Dim instance As GcMultiRow
 
instance.HideTouchKeyboard()
public void HideTouchKeyboard()
Example
This example uses the HideTouchKeyboard method.
private void button1_Click(object sender, EventArgs e)
        {           
            gcMultiRow1.HideTouchKeyboard();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            gcMultiRow1.ShowTouchKeyboard();
        }
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
            GcMultiRow1.HideTouchKeyboard()
End Sub

Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
           GcMultiRow1.ShowTouchKeyboard()
End Sub
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

GcMultiRow Class
GcMultiRow Members

 

 


Copyright © GrapeCity, inc. All rights reserved.