Spread Silverlight Documentation
RowViewportHeightChanging Event (SpreadView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SpreadView Class : RowViewportHeightChanging Event
Occurs when the user changes a viewport row height.
Syntax
'Declaration
 
Public Event RowViewportHeightChanging As System.EventHandler(Of RowViewportHeightChangingEventArgs)
'Usage
 
Dim instance As SpreadView
Dim handler As System.EventHandler(Of RowViewportHeightChangingEventArgs)
 
AddHandler instance.RowViewportHeightChanging, handler
public event System.EventHandler<RowViewportHeightChangingEventArgs> RowViewportHeightChanging
Event Data

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

PropertyDescription
(Inherited from System.ComponentModel.CancelEventArgs)
Gets the changed value of the viewport row height.  
Gets the index of the viewport row whose height is changing.  
See Also