DLGTITEM: Difference between revisions
Appearance
Created page with "Dialog-item structure. == Type == DLGTITEM == C Declaration Method == typedef == Example Code == <pre> typedef struct _DLGTITEM { USHORT fsItemStatus; →Status.: USHORT cChildren; →Count of children to this dialog item.: USHORT cchClassLen; →Length of class name.: USHORT offClassName; →Offset to class name.: USHORT cchTextLen; →Length of text.: USHORT offText; →Offset to text.: ..." |
(No difference)
|
Revision as of 23:03, 14 April 2025
Dialog-item structure.
Type
C Declaration Method
typedef
Example Code
typedef struct _DLGTITEM {
USHORT fsItemStatus; /* Status. */
USHORT cChildren; /* Count of children to this dialog item. */
USHORT cchClassLen; /* Length of class name. */
USHORT offClassName; /* Offset to class name. */
USHORT cchTextLen; /* Length of text. */
USHORT offText; /* Offset to text. */
ULONG flStyle; /* Dialog item window style. */
SHORT x; /* X-coordinate of origin of dialog-item window. */
SHORT y; /* Y-coordinate of origin of dialog-item window. */
SHORT cx; /* Dialog-item window width. */
SHORT cy; /* Dialog-item window height. */
USHORT id; /* Identity. */
USHORT offPresParams; /* Reserved. */
USHORT offCtlData; /* Offset to control data. */
} DLGTITEM;
typedef DLGTITEM * PDLGTITEM ;