Spread Windows Forms 9.0 Product Documentation
DataColumnConfigureEventHandler Delegate
ExampleExample 


Source of the DataColumnConfigure event
Event arguments
Represents a defined method that handles the DataColumnConfigure event for the Spread component.
Syntax
'Declaration
 
Public Delegate Sub DataColumnConfigureEventHandler( _
   ByVal sender As Object, _
   ByVal e As DataColumnConfigureEventArgs _
) 
'Usage
 
Dim instance As New DataColumnConfigureEventHandler(AddressOf HandlerMethod)
public delegate void DataColumnConfigureEventHandler( 
   object sender,
   DataColumnConfigureEventArgs e
)

Parameters

sender
Source of the DataColumnConfigure event
e
Event arguments
Remarks
For information on the event, refer to the FpSpread DataColumnConfigure event.
Example
This example creates the DataColumnConfigure event.
fpSpread1.DataColumnConfigure += new FarPoint.Win.Spread.DataColumnConfigureEventHandler(fpSpread1DataColumnConfigure);

private void fpSpread1DataColumnConfigure(object sender, FarPoint.Win.Spread.DataColumnConfigureEventArgs e)
{

}
Dim eh As FarPoint.Win.Spread.DataColumnConfigureEventHandler = AddressOf FpSpread1DataColumnConfigure
AddHandler FpSpread1.DataColumnConfigure, eh

Private Sub FpSpread1DataColumnConfigure(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.DataColumnConfigureEventArgs)
Handles FpSpread1.DataColumnConfigure

End Sub
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

DataColumnConfigureEventHandler Members
FarPoint.Win.Spread Namespace
DataColumnConfigureEventArgs Class
DataColumnConfigure Event

 

 


Copyright © GrapeCity, inc. All rights reserved.