<< Click to Display Table of Contents >>
SizeFactor |
Increases or decreases KeyPad's original size, by using a multiplication factor. KeyPad's original size is shown on the next table.
Default size values for KeyPad
Layout |
Width |
Height |
---|---|---|
Alphanumeric |
550 px |
250 px |
Numeric |
200 px |
300 px |
The following example resizes a KeyPad to 75% of its original size.
Sub CommandButton1_Click()
Application.GetKeyPad().SizeFactor = 0.75
Application.GetKeyPad().Show()
End Sub