CONTROLINFO structure (ocidl.h)

Contains parameters that describe a control's keyboard mnemonics and keyboard behavior. The structure is populated during the IOleControl::GetControlInfo method.

Syntax

typedef struct tagCONTROLINFO {
  ULONG  cb;
  HACCEL hAccel;
  USHORT cAccel;
  DWORD  dwFlags;
} CONTROLINFO, *LPCONTROLINFO;

Members

cb

The size of the structure, in bytes.

hAccel

A handle to an array of ACCEL structures, each structure describing a keyboard mnemonic. The array is created with the CreateAcceleratorTable function. The control always maintains the memory for this array; the caller of IOleControl::GetControlInfo should not attempt to free the memory.

cAccel

The number of mnemonics described in the hAccel field. This value can be zero to indicate no mnemonics.

dwFlags

Flags that indicate the keyboard behavior of the control. The possible values are:

  • CTRLINFO_EATS_RETURN: When the control has the focus, it will process the Return key.
  • CTRLINFO_EATS_ESCAPE: When the control has the focus, it will process the Escape key.
When the control has the focus, the dialog box containing the control cannot use the Return or Escape keys as mnemonics for the default and cancel buttons.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header ocidl.h

See also

IOleControl::GetControlInfo