'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;}
'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;}
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