Class ISplitterResizedEventArgs
Defines the event arguments of splitter resized action.
Inheritance
System.Object
ISplitterResizedEventArgs
Implements
System.IEquatable<ISplitterResizedEventArgs>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class ISplitterResizedEventArgs : Object, IEquatable<ISplitterResizedEventArgs>
Constructors
ISplitterResizedEventArgs()
Declaration
public ISplitterResizedEventArgs()
Properties
Cancel
Defines the event cancel status.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Element
Defines the element.
Declaration
public DOM Element { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Event
Defines the event.
Declaration
public EventArgs Event { get; set; }
Property Value
Type | Description |
---|---|
System.EventArgs |
Index
Defines the index of resizing pane.
Declaration
public double[] Index { get; set; }
Property Value
Type | Description |
---|---|
System.Double[] |
Pane
Defines the pane.
Declaration
public List<DOM> Pane { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<DOM> |
PaneSize
Defines the size of resized pane.
Declaration
public double[] PaneSize { get; set; }
Property Value
Type | Description |
---|---|
System.Double[] |
Separator
Defines the separator.
Declaration
public DOM Separator { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Methods
Equals(ISplitterResizedEventArgs)
Returns boolean value by comparing iSplitterResizedEventArgs
Declaration
public bool Equals(ISplitterResizedEventArgs iSplitterResizedEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ISplitterResizedEventArgs | iSplitterResizedEventArgs |
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<>