Click or drag to resize
DrawTopLeftBottomRightEventHandler Delegate
Delegate type for the DrawTopLeftBottomRight event of the GridControl class.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
public delegate void DrawTopLeftBottomRightEventHandler(
	Object sender,
	DrawTopLeftBottomRightEventArgs e
)

Parameters

sender
Type: SystemObject
The object that generated the event.
e
Type: Stingray.GridDrawTopLeftBottomRightEventArgs
The event data.
Remarks
A DrawTopLeftBottomRight delegate identifies the method that will handle the event. To associate an event handler with the event, add an instance of the delegate to the event. The associated event handler is then invoked whenever the event occurs, until the delegate is removed.
See Also