Represents a defined method that handles the DataColumnConfigure event for the Spread component.
Syntax
Parameters
- sender
- Source of the DataColumnConfigureEvent
- e
- Event arguments
Remarks
Example
This example creates the DataColumnConfigure event.
C# | Copy Code |
---|
fpSpread1.DataColumnConfigure += new FarPoint.Win.Spread.DataColumnConfigureEventHandler(fpSpread1DataColumnConfigure);
private void fpSpread1DataColumnConfigure(object sender, FarPoint.Win.Spread.DataColumnConfigureEventArgs e)
{
}
|
Visual Basic | Copy Code |
---|
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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also