Spread Windows Forms 6.0 Product Documentation
DataColumnConfigureEventHandler Delegate
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace : DataColumnConfigureEventHandler Delegate


sender
Source of the DataColumnConfigureEvent
e
Event arguments

Glossary Item Box

Represents a defined method that handles the DataColumnConfigure event for the Spread component.

Syntax

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

Parameters

sender
Source of the DataColumnConfigureEvent
e
Event arguments

Remarks

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

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 BasicCopy 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

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.