LPTGrd / LPTBGrd- DbGrid Print Component
Submitted By:
Unknown
Rating:





(
Rate It)
unit LptDefs;
interface
uses ExtCtrls,Graphics,Printers;
const
MAXCOLS=100;
MAXPAGES=999;
Type TPagePos=(ppNone,ppTopLeft,ppTopCenter,ppTopRight,ppBottomLeft,
ppBottomCenter,ppBottomRight);
Type TDestination=(dPreview,dPrinter);
Type TUnits=(uInches,uMMs,uPoints);
Type TPreviewPanel=class(TPanel)
public
property Canvas;
end;
Type TIntArray=Class
Ival:array [0..MAXCOLS] of longint;end;
implementation
end.