Gets the SIP (Soft Input Panel) height.
This property returns the same value whether the SIP is visible or not.
Syntax: SIPHeight As Int32
Example:
Sub hardware_SIPChanged 'Changes the TextBox height to fit the whole
available screen.
If hardware.SIPEnabled Then
TextBox1.Height = Form1.Height - hardware.SIPHeight
Else
TextBox1.Height = Form1.Height
End If
End Sub