Layout

<< Click to Display Table of Contents >>

 

Layout

Text Allows changing KeyPad's presentation layout. Possible values for this property are:

br-simple: Displays an alphanumeric keyboard

Example of an alphanumeric KeyPad

Example of an alphanumeric KeyPad

num: Displays a numeric keyboard

Example of a numeric KeyPad

Example of a numeric KeyPad

Example:

' Switches between Alphanumeric and Numeric modes
Sub ToggleButton1_Click()
  If ToggleButton1.Value Then
    Application.GetKeyPad().Layout = "br-simple"
  Else
    Application.GetKeyPad().Layout = "num"
  End If
End Sub

Was this page useful?