Overview | ||||||||||||||||
Group | ||||||||||||||||
Quick Info
|
MEASUREITEMSTRUCT
The MEASUREITEMSTRUCT structure informs Windows of the dimensions of an owner-drawn control or menu item. This allows Windows to process user interaction with the control correctly. typedef struct tagMEASUREITEMSTRUCT { // mis UINT CtlType; // type of control UINT CtlID; // combo box, list box, or button identifier UINT itemID; // menu item, variable-height list box, or combo box identifier UINT itemWidth; // width of menu item, in pixels UINT itemHeight; // height of single item in list box menu, in pixels DWORD itemData; // application-defined 32-bit value } MEASUREITEMSTRUCT; Members CtlType Specifies the control type. This member can be one of the following values:Value
| Meaning
|
ODT_BUTTON
| Owner-drawn button
|
ODT_COMBOBOX
| Owner-drawn combo box
|
ODT_LISTBOX
| Owner-drawn list box
|
ODT_LISTVIEW
| Owner-draw listview control
|
ODT_MENU
| Owner-drawn menu
|
CB_INSERTSTRING
LB_ADDSTRING
LB_INSERTSTRING Remarks The owner window of an owner-drawn control receives a pointer to the MEASUREITEMSTRUCT structure as the lParam parameter of a WM_MEASUREITEM message. The owner-drawn control sends this message to its owner window when the control is created. The owner then fills in the appropriate members in the structure for the control and returns. This structure is common to all owner-drawn controls. If an application does not fill the appropriate members of MEASUREITEMSTRUCT, the control or menu item may not be drawn properly. See Also CB_ADDSTRING, CB_INSERTSTRING, CB_SETITEMDATA, LB_ADDSTRING, LB_INSERTSTRING, LB_SETITEMDATA, WM_MEASUREITEM
- Software for developers
-
Delphi Components
.Net Components
Software for Android Developers - More information resources
-
MegaDetailed.Net
Unix Manual Pages
Delphi Examples - Databases for Amazon shops developers
-
Amazon Categories Database
Browse Nodes Database