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 edit summary |
||
Line 2: | Line 2: | ||
== Type == | == Type == | ||
[[ | [[struct]] | ||
== C Declaration Method == | == C Declaration Method == |
Revision as of 00:04, 15 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 ;