Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / CrossSplitBar Class / SizeChanged Event


In This Topic
    SizeChanged Event (CrossSplitBar)
    In This Topic
    Syntax
    'Declaration
     
    Public Event SizeChanged As SizeChangedEventHandler
    'Usage
     
    Dim instance As CrossSplitBar
    Dim handler As SizeChangedEventHandler
     
    AddHandler instance.SizeChanged, handler
    public event SizeChangedEventHandler SizeChanged
    Event Data

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

    PropertyDescription
    (Inherited from System.Windows.RoutedEventArgs)
    Gets a value that indicates whether the System.Windows.FrameworkElement.Height component of the size changed.  
    Gets the new System.Windows.Size of the object.  
    (Inherited from System.Windows.RoutedEventArgs)
    Gets the previous System.Windows.Size of the object.  
    (Inherited from System.Windows.RoutedEventArgs)
    (Inherited from System.Windows.RoutedEventArgs)
    Gets a value that indicates whether the System.Windows.FrameworkElement.Width component of the size changed.  
    See Also