Spread Windows Forms 9.0 Product Documentation
ColumnWidthChangedEventHandler Delegate
ExampleExample 


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

Parameters

sender
Source of the event
e
Event data
Remarks
For information on the event, refer to the FpSpread ColumnWidthChanged event.
Example
This example creates the ColumnWidthChanged event.
fpSpread1.ColumnWidthChange += new FarPoint.Win.Spread.ColumnWidthChangeEventHandler(fpSpread1ColumnWidthChange);

private void fpSpread1ColumnWidthChange(object sender, FarPoint.Win.Spread.ColumnWidthChangeEventArgs e)
{

}
Dim eh As FarPoint.Win.Spread.ColumnWidthChangeEventHandler = AddressOf FpSpread1ColumnViewportWidthChange
AddHandler FpSpread1.ColumnWidthChange, eh

Private Sub FpSpread1ColumnWidthChange(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.ColumnViewportWidthChangeEventArgs)
Handles FpSpread1.ColumnWidthChange

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

ColumnWidthChangedEventHandler Members
FarPoint.Win.Spread Namespace
ColumnWidthChangedEventArgs Class
ColumnWidthChanged Event

 

 


Copyright © GrapeCity, inc. All rights reserved.