GrapeCity.Xaml.SpreadSheet.UI
RowHeightChanging Event (SheetView)


GrapeCity.Xaml.SpreadSheet.UI Namespace > SheetView Class : RowHeightChanging Event
Occurs when the row height is changing.
Syntax
'Declaration
 
Public Event RowHeightChanging As EventHandler(Of RowHeightChangingEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As EventHandler(Of RowHeightChangingEventArgs)
 
AddHandler instance.RowHeightChanging, handler
public event 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