Jump to content

BANDRECT: Difference between revisions

From EDM2
Created page with "Location to which the device coordinates of the next band are returned. ==Type== typedef struct _BANDRECT { LONG xLeft; /* X-coordinate of the lower-left corner of..."
 
Ak120 (talk | contribs)
mNo edit summary
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
Location to which the device coordinates of the next band are returned.  
Location to which the device coordinates of the next band are returned.
 
==Type==
==Type==
  typedef struct _BANDRECT {
  LONG    xLeft;
  LONG    xLeft;   /* X-coordinate of the lower-left corner of the rectangular band. */
  LONG    yBottom;
  LONG    yBottom;  /*  Y-coordinate of the lower-left corner of the rectangular band. */
  LONG    xRight;
  LONG    xRight;   /* X-coordinate of the top-right corner of the rectangular band. */
  LONG    yTop;
  LONG    yTop;     /*  Y-coordinate of the to-right corner of the rectangular band. */
 
} BANDRECT;
==C Declaration Method==
==C Declaration Method==
typedef BANDRECT *PBANDRECT;
typedef BANDRECT *PBANDRECT;
 
==Fields==
;xLeft (LONG):X-coordinate of the lower-left corner of the rectangular band.
;yBottom (LONG):Y-coordinate of the lower-left corner of the rectangular band.
;xRight (LONG):X-coordinate of the top-right corner of the rectangular band.
;yTop (LONG):Y-coordinate of the to-right corner of the rectangular band.
 
[[Category:Data type]]
[[Category:Data type]]

Latest revision as of 16:46, 8 February 2020

Location to which the device coordinates of the next band are returned.

Type

LONG     xLeft;
LONG     yBottom;
LONG     xRight;
LONG     yTop;

C Declaration Method

typedef BANDRECT *PBANDRECT;

Fields

xLeft (LONG)
X-coordinate of the lower-left corner of the rectangular band.
yBottom (LONG)
Y-coordinate of the lower-left corner of the rectangular band.
xRight (LONG)
X-coordinate of the top-right corner of the rectangular band.
yTop (LONG)
Y-coordinate of the to-right corner of the rectangular band.