Represents the method that will handle the cell span events of grid provider classes.

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

Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Delegate Sub CellSpanEventHandler ( _
	sender As Object, _
	e As CellSpanEventArgs _
)
C#
[SerializableAttribute]
public delegate void CellSpanEventHandler(
	Object sender,
	CellSpanEventArgs e
)
Visual C++
[SerializableAttribute]
public delegate void CellSpanEventHandler(
	Object^ sender, 
	CellSpanEventArgs^ e
)
JavaScript
function(sender, e);

Parameters

sender
Type: System..::.Object
The source of the event.
e
Type: Greatis.PrintSuite.Providers..::.CellSpanEventArgs
Event data.

See Also