IEnvironment.IEPrintWithPage
IEnvironment

property IEPrintWithPage: WordBool;

Type Library
TeeChartx

Description
Default: False.

When set to True, enables Charts and their Series content to be printed in a standard Internet Explorer Menu Page Print job. The property should be set to true for each Chart in the page for which full printing is required to be enabled.

*NOTE*

This property is only essential for the printing of charts from IE for versions of IE up to v4.

See TChart's own Print methods for Chart printing via scripting languages.

Example [VBScript]:

<script language="VBScript"><!--

Sub Window_Onload()

'2 Charts in one browser page

TChart1.Environment.IEPrintWithPage = True

TChart2.Environment.IEPrintWithPage = True

End sub

--></script>