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 ( _
	args As PrintContentEventArgs, _
	c As Integer, _
	r As Integer, _
	sc As Integer, _
	sr As Integer, _
	cellbounds As Rectangle, _
	cellpaddingbounds As Rectangle, _
	celllayout As CellLayout _
)
C#
public PrintCellEventArgs(
	PrintContentEventArgs args,
	int c,
	int r,
	int sc,
	int sr,
	Rectangle cellbounds,
	Rectangle cellpaddingbounds,
	CellLayout celllayout
)
Visual C++
public:
PrintCellEventArgs(
	PrintContentEventArgs^ args, 
	int c, 
	int r, 
	int sc, 
	int sr, 
	Rectangle cellbounds, 
	Rectangle cellpaddingbounds, 
	CellLayout^ celllayout
)
JavaScript
Greatis.PrintSuite.Providers.PrintCellEventArgs = function(args, c, r, sc, sr, cellbounds, cellpaddingbounds, celllayout);

Parameters

args
Type: Greatis.PrintSuite..::.PrintContentEventArgs
Instance of the inherited arguments class.
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