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


sender
Object that raised the event
e
Object of PaintGroupBarBackgroundEventArgs class that contains event data
Represents a defined method that handles the PaintGroupBarBackground event in the Spread component.

Syntax

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

Parameters

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

See Also