Spread Silverlight Documentation
RowHeightChanging Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : RowHeightChanging Event
Occurs when the row height is changing.
Syntax
'Declaration
 
Public Event RowHeightChanging As System.EventHandler(Of RowHeightChangingEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of RowHeightChangingEventArgs)
 
AddHandler instance.RowHeightChanging, handler
public event System.EventHandler<RowHeightChangingEventArgs> RowHeightChanging
Event Data

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

PropertyDescription
(Inherited from System.ComponentModel.CancelEventArgs)
Gets whether the rows indexes are column header rows.  
Gets the list of rows whose heights are changing.  
See Also