FarPoint.Win.Spread
PaintGrayAreaEventHandler Delegate
See Also 
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace : PaintGrayAreaEventHandler Delegate


sender
Object that raised the event
e
Object of PaintGrayAreaEventArgs class that contains event data
Represents a defined method that handles the PaintBackground event for the Spread component.

Syntax

Visual Basic (Declaration) 
Public Delegate Sub PaintGrayAreaEventHandler( _
   ByVal sender As Object, _
   ByVal e As PaintGrayAreaEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As New PaintGrayAreaEventHandler(AddressOf HandlerMethod)
C# 
public delegate void PaintGrayAreaEventHandler( 
   object sender,
   PaintGrayAreaEventArgs e
)

Parameters

sender
Object that raised the event
e
Object of PaintGrayAreaEventArgs class that contains event data

Return Value

For information on the event, refer to the FpSpread PaintGrayArea event.

See Also