QUERYRECORDRECT: Difference between revisions
Appearance
Created page with "Structure that contains information about the rectangle of the specified container record, relative to the container window origin. This structure is used in the CM_QUERYRECORDRECT container message only. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _QUERYRECORDRECT { ULONG cb; →Structure size.: PRECORDCORE pRecord; →Pointer.: ULONG fRightSplitWindow; /*..." |
No edit summary |
||
Line 1: | Line 1: | ||
Structure that contains information about the rectangle of the specified container record, relative to the container window origin. This structure is used in the CM_QUERYRECORDRECT container message only. | Structure that contains information about the rectangle of the specified container record, relative to the container window origin. This structure is used in the [[CM_QUERYRECORDRECT]] container message only. | ||
== Type == | == Type == |
Latest revision as of 01:18, 21 April 2025
Structure that contains information about the rectangle of the specified container record, relative to the container window origin. This structure is used in the CM_QUERYRECORDRECT container message only.
Type
struct
C Declaration Method
typedef
Example Code
typedef struct _QUERYRECORDRECT { ULONG cb; /* Structure size. */ PRECORDCORE pRecord; /* Pointer. */ ULONG fRightSplitWindow; /* Window flag. */ ULONG fsExtent; /* Rectangle flags. */ } QUERYRECORDRECT; typedef QUERYRECORDRECT * PQUERYRECORDRECT ;