Syntax
HRESULT Start3([in] long keyModifier, [in] long key, [out] long * pID )
// Method sets the hotkey configuration on which is raised the event for starting the capture.
Variables
keyModifier
// it can be assigned a long value that could be one of these: HOTKEYF_ALT, HOTKEYF_CONTROL, HOTKEYF_EXT, HOTKEYF_SHIFT;
key
// it can be assigned a long value that represents the value of a key on the keyboard;
pID
// a parameter that will be set to the hotkey configuration id.
Errors
E_INVALIDARG
// an invalid argument is passed to Start method.
|