GroupVisible Property (AVirtualKeyboard)

Returns or sets whether the group on the keyboard is visible.

Syntax

Object.GroupVisible (enGroup) [ = bVisible ]

The GroupVisible property syntax has the following parts:

 

Name

Type

Description

Object

AVirtualKeyboard

An AVirtualKeyboard object

enGroup

enumAKeyboardGroup

a keyboard group

bVisible

Bool

A boolean expression that specifies whether given group is visible or hidden.

Where

enGourp can be one of the following:

 

Group Name

Value

Description

akbdGroupEsc

0x00000001

Esc

akbdGroupF1

0x00000002

F1

akbdGroupF5

0x00000004

F5

akbdGroupF9

0x00000008

F9

akbdGroupStandard

0x00000010

Standard

akbdGroupPrintScreen

0x00000020

PrintScreen

akbdGroupInsert

0x00000040

Insert

akbdGroupArrow

0x00000080

Arrow

akbdGroupNumber

0x00000100

Number

akbdGroupFunction

0x0000000F

Function

akbdGroupNavigation

0x000000E0

Navigation

akbdGroupAll

0x000001FF

All

Comments

Use this command to show or hide certain keyboard groups.

Example

The following statement hides a keyboard group:

m_keyboard.GroupVisible(akbdGroupNavigation)=False

Applies to

AVirtualKeyboard

See Also

Show