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

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
cellLayout
Type: Greatis.PrintSuite.Providers..::.CellLayout
Layout of the cell.
w
Type: System..::.Int32
Width of the cell.

See Also