Search
FlowChart.PrintChart Method
See Also
 



Prints the diagram (obsolete).

 Syntax

VB6  Copy Code

Public Sub PrintChart( _
    ByVal bPrintInterior As Boolean, _
    ByVal bPrintImages As Boolean, _
    ByVal bPrintFrame As Boolean, _
    ByVal bPrintHeader As Boolean, _
    ByVal bPrintShadows As Boolean, _
    ByVal sDocName As String _
)

C++  Copy Code

public:
void PrintChart (
    bool bPrintInterior,
    bool bPrintImages,
    bool bPrintFrame,
    bool bPrintHeader,
    bool bPrintShadows,
    BSTR sDocName
)

 Parameters

bPrintInterior
Specifies whether to print objects interior and control background.
bPrintImages
Specifies whether to print images.
bPrintFrame
Specifies whether to print a frame around the document.
bPrintHeader
Specifies whether to print header at the top of each page.
bPrintShadows
Specifies whether to print shadows.
sDocName
The name of the document, printed in all page headers.

 Remarks

Prints the current document contents. The standard Windows print dialog is displayed before printing to let users choose print settings, such as output device, page range, orientation (landscape or portrait) and number of copies to make. You can control various visual aspects of the print output by passing appropriate values for the parameters of this method.

 Note

This method is obsolete. You should use the PrintDiagram method in conjunction with the PrintOptions structure to print FlowChartX documents.

 See Also