ArcObjects Library Reference (PublisherControls)  

IARGlobeControlEvents.OnKeyDown Event

Fires after a key is pressed on the keyboard whilst the globe has focus.

[Visual Basic .NET]
Public Event OnKeyDown As OnKeyDownEventHandler
[C#]
public event OnKeyDownEventHandler OnKeyDown

Product Availability

Available with ArcGIS Desktop. Requires Publisher Extension.

Description

The OnKeyDown event is triggered when the user presses a key whilst the globe display area of the ArcReaderGlobeControl has focus.

keyCode specifies a virtual key code value of the key pressed on the keyboard. For alpha-numeric keys this corresponds to the ASCII value, for example "A" key returns 65 which is the ASCII value for capital A. Other key codes are F1 to F12 are 112 to 123 respectively.

Shift specifies an integer corresponding to the state of the SHIFT (bit 0), CTRL (bit 1) and ALT (bit 2) keys. When none, some or all of these keys are pressed none, some or all the bits get set. These bits correspond to the values 1, 2, and 4, respectively. For example, if both SHIFT and ALT were pressed, Shift would return 5.

See Also

IARGlobeControlEvents Interface