SizedDtblLabel
Applies to: Office 2010 | Outlook 2010 | Visual Studio
Creates a named structure that includes a DTBLLABEL structure for describing a label control and the associated label of a specified length.
Specified in header file: |
Mapidefs.h |
Related structure |
DTBLLABEL |
SizedDtblLabel (n, u)
Parameters
n
Length of the label. This includes the ending NULL character.u
Name for the new structure.
Remarks
The SizedDtblLabel macro lets you define a display table label when the number of characters in the label is known. The new structure is created with the following members:
DTBLLABEL dtbllabel;
TCHAR lpszLabelName[n];
To use a pointer to the resulting structure from the SizedDtblLabel macro as a DTBLLABEL structure pointer, perform the following cast:
lpDtblLabel = (LPDTBLLABEL) &SizedDtblLabel;