Jump to content

VSDRAGINIT: Difference between revisions

From EDM2
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; ..."
 
(No difference)

Latest revision as of 12:02, 21 February 2020

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;