Spread Silverlight Documentation
NewZoomFactor Property
Example 


GrapeCity.Windows.SpreadSheet.UI Namespace > ZoomEventArgs Class : NewZoomFactor Property
Gets the new zoom factor.
Syntax
'Declaration
 
Public ReadOnly Property NewZoomFactor As System.Single
'Usage
 
Dim instance As ZoomEventArgs
Dim value As System.Single
 
value = instance.NewZoomFactor
public System.float NewZoomFactor {get;}

Property Value

The new zoom factor.
Example
This example uses the NewZoomFactor property.
gcSpreadSheet1.CanUserZoom = true; 

private void gcSpreadSheet1_UserZooming(object sender, GrapeCity.Windows.SpreadSheet.UI.ZoomEventArgs e)
        {
         listBox1.Items.Add(e.NewZoomFactor.ToString());
         listBox1.Items.Add(e.OldZoomFactor.ToString());
        }
GcSpreadSheet1.CanUserZoom = True

    Private Sub GcSpreadSheet1_UserZooming(sender As System.Object, e As GrapeCity.Windows.SpreadSheet.UI.ZoomEventArgs) Handles GcSpreadSheet1.UserZooming
        ListBox1.Items.Add(e.NewZoomFactor.ToString())
        ListBox1.Items.Add(e.OldZoomFactor.ToString())
    End Sub
See Also

Reference

ZoomEventArgs Class
ZoomEventArgs Members