Move Method (AVirtualKeyboard)

Moves the keyboard object.

Syntax

Object.Move (lLeft, lTop)

The Move method syntax has the following parts:

 

Name

Type

Description

Object

AVirtualKeyboard

AVirtualKeyboard object

lLeft

Long

Specifies the position of the left edge of the keyboard to move.

lTop

Long

Specifies the position of the top edge of the keyboard to move.

bRelativePosition

[Bool]

True if (lLeft, lTop) is relative position. False is the default value.

Comments
 

Example

The following example moves the keyboard to the left 10, to top 5 in relative to the keyboard position :

m_keyboard.Move(10, 5, TRUE)

Applies to

AVirtualKeyboard

See Also

Show