Initializes a new instance of the class.

Namespace:  Greatis.PrintSuite.Providers
Assembly:  Greatis.PrintSuite.Providers.Grids (in Greatis.PrintSuite.Providers.Grids.dll)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	documentsection As Integer, _
	documentpage As Integer, _
	documentprovider As Integer, _
	documentcontent As Integer, _
	sectionpage As Integer, _
	sectionprovider As Integer, _
	sectioncontent As Integer, _
	pageprovider As Integer, _
	pagecontent As Integer, _
	providerpage As Integer, _
	providercontent As Integer, _
	gr As Graphics, _
	contentregion As Region, _
	contentbounds As Rectangle, _
	marginbounds As Rectangle, _
	pagebounds As Rectangle, _
	pagesettings As PageSettings, _
	c As Integer, _
	r As Integer, _
	sc As Integer, _
	sr As Integer, _
	cellbounds As Rectangle, _
	cellpaddingbounds As Rectangle, _
	cellLayout As CellLayout _
)
C#
public PrintCellEventArgs(
	int documentsection,
	int documentpage,
	int documentprovider,
	int documentcontent,
	int sectionpage,
	int sectionprovider,
	int sectioncontent,
	int pageprovider,
	int pagecontent,
	int providerpage,
	int providercontent,
	Graphics gr,
	Region contentregion,
	Rectangle contentbounds,
	Rectangle marginbounds,
	Rectangle pagebounds,
	PageSettings pagesettings,
	int c,
	int r,
	int sc,
	int sr,
	Rectangle cellbounds,
	Rectangle cellpaddingbounds,
	CellLayout cellLayout
)
Visual C++
public:
PrintCellEventArgs(
	int documentsection, 
	int documentpage, 
	int documentprovider, 
	int documentcontent, 
	int sectionpage, 
	int sectionprovider, 
	int sectioncontent, 
	int pageprovider, 
	int pagecontent, 
	int providerpage, 
	int providercontent, 
	Graphics^ gr, 
	Region^ contentregion, 
	Rectangle contentbounds, 
	Rectangle marginbounds, 
	Rectangle pagebounds, 
	PageSettings^ pagesettings, 
	int c, 
	int r, 
	int sc, 
	int sr, 
	Rectangle cellbounds, 
	Rectangle cellpaddingbounds, 
	CellLayout^ cellLayout
)
JavaScript
Greatis.PrintSuite.Providers.PrintCellEventArgs = function(documentsection, documentpage, documentprovider, documentcontent, sectionpage, sectionprovider, sectioncontent, pageprovider, pagecontent, providerpage, providercontent, gr, contentregion, contentbounds, marginbounds, pagebounds, pagesettings, c, r, sc, sr, cellbounds, cellpaddingbounds, cellLayout);

Parameters

documentsection
Type: System..::.Int32
Zero-based index of current section within the document.
documentpage
Type: System..::.Int32
Zero-based index of current page within the document.
documentprovider
Type: System..::.Int32
Zero-based index of current provider within the document.
documentcontent
Type: System..::.Int32
Zero-based index of current content within the document.
sectionpage
Type: System..::.Int32
Zero-based index of current page within current section.
sectionprovider
Type: System..::.Int32
Zero-based index of current provider within current section.
sectioncontent
Type: System..::.Int32
Zero-based index of current content within current section.
pageprovider
Type: System..::.Int32
Zero-based index of current provider within current page.
pagecontent
Type: System..::.Int32
Zero-based index of current content within current page.
providerpage
Type: System..::.Int32
Zero-based index of current page within current provider.
providercontent
Type: System..::.Int32
Zero-based index of current content within current provider.
gr
Type: System.Drawing..::.Graphics
Graphics object used for drawing the content.
contentregion
Type: System.Drawing..::.Region
Region available for printing.
contentbounds
Type: System.Drawing..::.Rectangle
Rectangular area available for printing.
marginbounds
Type: System.Drawing..::.Rectangle
Rectangular area that represents the portion of the page inside the margins.
pagebounds
Type: System.Drawing..::.Rectangle
Rectangular area that represents the total area of the page.
pagesettings
Type: System.Drawing.Printing..::.PageSettings
Page settings for the current page.
c
Type: System..::.Int32
Zero-based index of cell column.
r
Type: System..::.Int32
Zero-based index of cell row.
sc
Type: System..::.Int32
Zero-based index of column portion of spanned cell.
sr
Type: System..::.Int32
Zero-based index of row portion of spanned cell
cellbounds
Type: System.Drawing..::.Rectangle
Cell bounds rectangle.
cellpaddingbounds
Type: System.Drawing..::.Rectangle
Cell padding bounds rectangle.
cellLayout
Type: Greatis.PrintSuite.Providers..::.CellLayout
Cell layout.

See Also