Jump to content

HCINFO: Difference between revisions

From EDM2
Created page with "Hardcopy-capabilities structure. ==Type== CHAR szFormname[32]; LONG cx; LONG cy; LONG xLeftClip; LONG yBottomClip; ..."
 
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
Hardcopy-capabilities structure.  
Hardcopy-capabilities structure.
 
==Type==
==Type==
   CHAR    szFormname[32];
   CHAR    szFormname[32];
Line 11: Line 12:
   LONG    yPels;         
   LONG    yPels;         
   LONG    flAttributes;
   LONG    flAttributes;
==C Declaration Method==
==C Declaration Method==
  typedef struct
  typedef struct


==Example Code==
==Fields==
<PRE>
;szFormname[32]:Form name
typedef struct _HCINFO {
;cx:Width (left-to-right) in millimeters.
  CHAR    szFormname[32];  /*  Form name. */
;cy:Height (top-to-bottom) in millimeters.
  LONG    cx;              /*  Width (left-to-right) in millimeters. */
;xLeftClip:Left clip limit in millimeters.
  LONG    cy;              /*  Height (top-to-bottom) in millimeters. */
;yBottomClip:Bottom clip limit in millimeters.
  LONG    xLeftClip;      /*  Left clip limit in millimeters. */
;xRightClip:Right clip limit in millimeters.
  LONG    yBottomClip;    /*  Bottom clip limit in millimeters. */
;yTopClip:Top clip limit in millimeters.
  LONG    xRightClip;      /*  Right clip limit in millimeters. */
;xPels:Number of pels between left and right clip limits.
  LONG    yTopClip;        /*  Top clip limit in millimeters. */
;yPels:Number of pels between bottom and top clip limits.
  LONG    xPels;          /*  Number of pels between left and right clip limits. */
;flAttributes:Attributes of the form identifier.
  LONG    yPels;          /*  Number of pels between bottom and top clip limits. */
  LONG    flAttributes;    /*  Attributes of the form identifier. */
} HCINFO;
 
typedef HCINFO *PHCINFO;
 
 
</PRE>


[[Category:Data type]]
[[Category:PM Data type]]

Revision as of 06:38, 21 February 2020

Hardcopy-capabilities structure.

Type

 CHAR     szFormname[32];
 LONG     cx;            
 LONG     cy;            
 LONG     xLeftClip;     
 LONG     yBottomClip;   
 LONG     xRightClip;    
 LONG     yTopClip;      
 LONG     xPels;         
 LONG     yPels;         
 LONG     flAttributes;

C Declaration Method

typedef struct

Fields

szFormname[32]
Form name
cx
Width (left-to-right) in millimeters.
cy
Height (top-to-bottom) in millimeters.
xLeftClip
Left clip limit in millimeters.
yBottomClip
Bottom clip limit in millimeters.
xRightClip
Right clip limit in millimeters.
yTopClip
Top clip limit in millimeters.
xPels
Number of pels between left and right clip limits.
yPels
Number of pels between bottom and top clip limits.
flAttributes
Attributes of the form identifier.