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


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

Syntax

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

Parameters

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

Remarks

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

See Also