ComponentOne Chart for WPF and Silverlight
SizeChanged Event (FrameworkElement3D)


C1.WPF.C1Chart Namespace > FrameworkElement3D Class : SizeChanged Event
Syntax
'Declaration
 
Public Event SizeChanged As System.Windows.SizeChangedEventHandler
'Usage
 
Dim instance As FrameworkElement3D
Dim handler As System.Windows.SizeChangedEventHandler
 
AddHandler instance.SizeChanged, handler
public event System.Windows.SizeChangedEventHandler SizeChanged
Event Data

The event handler receives an argument of type System.Windows.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