Class ContextMenuOpenEventArgs<T>
Defines the event arguments of context menu open action.
Inheritance
System.Object
ContextMenuOpenEventArgs<T>
Implements
System.IEquatable<ContextMenuOpenEventArgs<T>>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class ContextMenuOpenEventArgs<T> : Object, IEquatable<ContextMenuOpenEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T |
Constructors
ContextMenuOpenEventArgs()
Declaration
public ContextMenuOpenEventArgs()
Properties
Cancel
Defines the event cancel status
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ChartRow
Defines the chart row element
Declaration
public DOM ChartRow { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Column
Defines the Gantt column collection.
Declaration
public ColumnModel Column { get; set; }
Property Value
Type | Description |
---|---|
ColumnModel |
DisableItems
Defines the disabled items collection
Declaration
public string[] DisableItems { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
Element
Defines the element.
Declaration
public DOM Element { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Event
Defines event args in contextmenu open action
Declaration
public EventArgs Event { get; set; }
Property Value
Type | Description |
---|---|
System.EventArgs |
GridRow
Defines the TreeGrid row element
Declaration
public DOM GridRow { get; set; }
Property Value
Type | Description |
---|---|
DOM |
HideItems
Defines the hidden items collection
Declaration
public string[] HideItems { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
Items
Defines the context menu items collection
Declaration
public object Items { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Left
Defines the context menu left value
Declaration
public Nullable<double> Left { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Name
Specifies name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ParentItem
Specifies parent item of selected item.
Declaration
public object ParentItem { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
RowData
Defines the selected row record
Declaration
public IGanttData<T> RowData { get; set; }
Property Value
Type | Description |
---|---|
IGanttData<T> |
RowInfo
Specifies selected row info.
Declaration
public object RowInfo { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Top
Specifies top value.
Declaration
public Nullable<double> Top { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Type
Defines the type of event.
Declaration
public object Type { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Methods
Equals(ContextMenuOpenEventArgs<T>)
Returns boolean value by comparing contextMenuOpenEventArgs
Declaration
public bool Equals(ContextMenuOpenEventArgs<T> contextMenuOpenEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ContextMenuOpenEventArgs<T> | contextMenuOpenEventArgs |
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<>