'Declaration
Public Event ColumnWidthChanged As ColumnWidthChangedEventHandler
'Usage
Dim instance As FpSpread Dim handler As ColumnWidthChangedEventHandler AddHandler instance.ColumnWidthChanged, handler
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.
Property | Description |
---|---|
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. |
See Also