Spread WPF Documentation
NewZoomFactor Property
Example 


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
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)

See Also

Reference

ZoomEventArgs Class
ZoomEventArgs Members

 

 


Copyright © GrapeCity, inc. All rights reserved.