PrintLineWidth Property

PrintOrientation Property

Introduction

 

PrintMultiInit Method
PrintMultiPage Method
PrintMultiEnd Method This function is for printing purposesThis function supports constants


 

These three methods provide you with the ability to create a single multi page print job.

 

Syntax

FlpGrf.PrintMultiInit = value

FlpGrf.PrintMultiPage

FlpGrf.PrintMultiEnd

 

The PrintMultiInit, PrintMultiPage, PrintMultiEnd methods have these parts:

Part

Description

FlpGrf

An object expression that evaluates the Flipper Graph Control object.

value

An integer value representing the type of printing to occur.

 

Settings

Constant

Value

Description

flpPrintDirect

1

Print directly

flpSetupDialogFirst

2

Display a print dialog prior to printing

 

Remarks

PrintMultiInit method takes the same parameters as the PrintNow property, but does not start to print. When you need to add the graph currently displayed to the print job as another page, you call the PrintMultiPage method. When the job is complete call the PrintMultiEnd method to end the spooling and start printing the job.

 

Example

FlpGrf.PrintMultiInit 1      'just like PrintNow
For i = 1 To 3
     FlpGrf.PrintMultiPage      'print each graph to a separate page
     'Change the graph here...
Next
FlpGrf.PrintMultiEnd      'Close the document


 

See Also

All Print Routines, PrintAbortDialog Property, PrintBottom Property, PrintDpiHeight Property, PrintDpiWidth Property, PrintLeft Property, PrintLineWidth Property, PrintNow Method, PrintOrientation Property, PrintPath Property, PrintRight Property, PrintTop Property

 



PrintLineWidth Property PrintOrientation Property

 

 

Last modified on: Friday, August 16, 2002