Class ZoomFactorChangedEventArgs
Represents the class which holds the properties of ZoomFactorChanged event.
Namespace: Syncfusion.UI.Xaml.Spreadsheet.Helpers
Assembly: Syncfusion.SfSpreadsheet.WPF.dll
Syntax
public class ZoomFactorChangedEventArgs : GridEventArgs
Constructors
ZoomFactorChangedEventArgs(String, Int32, ZoomTrigger)
Initializes a new instance of the ZoomFactorChangedEventArgs class.
Declaration
public ZoomFactorChangedEventArgs(string sheetName, int zoomfactor, ZoomTrigger trigger)
Parameters
Type | Name | Description |
---|---|---|
System.String | sheetName | Name of the sheet. |
System.Int32 | zoomfactor | Size to zoom. |
ZoomTrigger | trigger | One of the enum options to trigger. |
Properties
SheetName
Gets the name of the IWorksheet that zooms in or out.
Declaration
public string SheetName { get; }
Property Value
Type | Description |
---|---|
System.String | Name of the sheet. |
ZoomFactor
Gets the zoom factor.
Declaration
public int ZoomFactor { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Size to zoom. |
ZoomTrigger
Gets the trigger option to zoom in or out.
Declaration
public ZoomTrigger ZoomTrigger { get; }
Property Value
Type | Description |
---|---|
ZoomTrigger | One of the enum option to trigger. |