SizedDtblLabel
Applies to: Outlook 2013 | Outlook 2016
Creates a named structure that includes a DTBLLABEL structure for describing a label control and the associated label of a specified length.
Property | Value |
---|---|
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;