spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / javascript / column91


Print Templates, Part II: TemplatePrinter

Finance Developer (IL)
Next Step Systems
US-IL-Chicago

Justtechjobs.com Post A Job | Post A Resume
Developer News
OpenOffice 3.2 Lands Amid Critical Changes
Red Hat, IBM Firmly in KVM Virtualization Camp
Red Hat Talks Up Open Source Cloud Plans


Assembling the Print Template

What's new in this print template, compared to the print template we presented in Column 89, (Print Templates, Part I), is that it includes the TEMPLATEPRINTER element. The TEMPLATEPRINTER element is very rich in methods and properties which accommodate many of your printing and previewing needs. Here is how you define a TEMPLATEPRINTER element with ID="printer":

<IE:TEMPLATEPRINTER ID="printer"/>

Notice that this TEMPLATEPRINTER element is defined in the IE namespace. You define the XML namespace in the opening HTML element:

<HTML XMLNS:IE>

Also notice that the TEMPLATEPRINTER element does not have a closing tag. It must have a forward slash (/) before its closing bracket.

This print template is ready to print or preview the first two pages of a document. We explained how to handle a variable number of pages in Column 89, Print Templates, Part I. Each page is contained in a LAYOUTRECT element, which in turn is included in a DEVICERECT element. Read more on these elements in Column 89. The CONTENTSRC attribute of the first page's LAYOUTRECT element points to "document" which is the currently-loaded document. Here is the whole BODY section:

<BODY>

<IE:TEMPLATEPRINTER ID="printer"/>

<IE:DEVICERECT ID="page1" CLASS="masterstyle" MEDIA="print">
	<IE:LAYOUTRECT ID="layoutrect1" CONTENTSRC="document"
  CLASS="contentstyle" NEXTRECT="layoutrect2"/>
</IE:DEVICERECT>

<IE:DEVICERECT ID="page2" CLASS="masterstyle" MEDIA="print">
	<IE:LAYOUTRECT ID="layoutrect2" CLASS="contentstyle"
  ONLAYOUTCOMPLETE="setTimeout('CheckIfPrintRequested()', 100)"/>
</IE:DEVICERECT>

</BODY>

Next: How to cipher dialogArguments for the desired action


http://www.internet.com


The Network for Technology Professionals

Search:

About Internet.com

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | E-mail Offers

webref The latest from WebReference.com Browse >
Installing and Using Meeplace, the Business Review CMS · Sending an HTML and Plain Text E-newsletter with ASP.NET, Part 2 · Create Multilingual Web Sites with Windows Unicode Fonts
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Top 10 Threats to Wireless Security · Poll: UC Uptake on the Rise · Review: Fluke AirCheck Wi-Fi Tester 1.0


Produced by Yehuda Shiran and Tomer Shiran
All Rights Reserved. Legal Notices.
Created: August 27, 2001
Revised: August 27, 2001

URL: http://www.webreference.com/js/column91/3.html