Spread Windows Forms 6.0 Product Documentation
ColumnWidthChanged Event
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : ColumnWidthChanged Event


Glossary Item Box

Occurs when the column width has changed.

Syntax

Visual Basic (Declaration) 
Public Event ColumnWidthChanged As ColumnWidthChangedEventHandler
Visual Basic (Usage)Copy Code
Dim instance As FpSpread
Dim handler As ColumnWidthChangedEventHandler
 
AddHandler instance.ColumnWidthChanged, handler
C# 
public event ColumnWidthChangedEventHandler ColumnWidthChanged

Event Data

The event handler receives an argument of type ColumnWidthChangedEventArgs containing data related to this event. The following ColumnWidthChangedEventArgs properties provide information specific to this event.

PropertyDescription
ColumnList Gets the list of columns whose widths have changed.
Header Gets whether the column indexes are row header columns.
View Gets the view that contains the columns whose widths have changed.

Remarks

This event is raised by the OnColumnWidthChanged method when the column width has changed.

For more details on the individual event arguments, refer to ColumnWidthChangedEventArgs members.

If you want to catch the event of a user changing the width of the columns in the row header, you need to map the SheetView.DocumentModels class, RowHeaderColumnAxis property, Changed event.

Example

This example raises the event.
C#Copy Code
private void fpSpread1_ColumnWidthChanged(object sender, FarPoint.Win.Spread.ColumnWidthChangedEventArgs e)
{
     ListBox1.Items.Add("ColumnWidthChanged event fired!");
}
Visual BasicCopy Code
Private Sub FpSpread1_ColumnWidthChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.ColumnWidthChangedEventArgs)
Handles FpSpread1.RowHeightChanged
     ListBox1.Items.Add("ColumnWidthChanged event fired!")
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.