Class ZoomEventArgs
Defines the zoom action arguments
Inheritance
System.Object
ZoomEventArgs
Implements
System.IEquatable<ZoomEventArgs>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class ZoomEventArgs : Object, IEquatable<ZoomEventArgs>
Constructors
ZoomEventArgs()
Declaration
public ZoomEventArgs()
Properties
Action
Defines the zoom action.
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Cancel
Defines the cancel option value.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
RequestType
Defines the request type.
Declaration
public string RequestType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Timeline
Defines Zoom timeline settings.
Declaration
public ZoomTimelineSettings Timeline { get; set; }
Property Value
Type | Description |
---|---|
ZoomTimelineSettings |
Methods
Equals(ZoomEventArgs)
Returns boolean value by comparing zoomEventArgs
Declaration
public bool Equals(ZoomEventArgs zoomEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ZoomEventArgs | zoomEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(Object)
Returns boolean value by comparing object
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type | Description |
---|---|
System.Boolean |
GetHashCode()
Returns hashcode for current object
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Implements
System.IEquatable<>