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


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

Syntax

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

Parameters

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

See Also