Jump to content

VSDRAGINIT

From EDM2
Revision as of 13:02, 21 February 2020 by Ak120 (talk | contribs) (Created page with "Structure that contains information that is used to initialize a direct manipulation action over the value set control. typedef struct _VSDRAGINIT { HWND hwnd; ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains information that is used to initialize a direct manipulation action over the value set control.

typedef struct _VSDRAGINIT {
  HWND       hwnd;      /*  Value set window handle. */
  LONG       x;         /*  X-coordinate. */
  LONG       y;         /*  Y-coordinate. */
  LONG       cx;        /*  X-offset. */
  LONG       cy;        /*  Y-offset. */
  USHORT     usRow;     /*  Row index. */
  USHORT     usColumn;  /*  Column index. */
} VSDRAGINIT;

typedef VSDRAGINIT *PVSDRAGINIT;