Class IParent
Class that defines the parent record details.
Inheritance
System.Object
IParent
Implements
System.IEquatable<IParent>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class IParent : Object, IEquatable<IParent>
Constructors
IParent()
Declaration
public IParent()
Properties
Expanded
Defines the expanded state of task.
Declaration
public bool Expanded { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Index
Defines the index of task.
Declaration
public double Index { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Level
Defines the level of task.
Declaration
public double Level { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
TaskId
Defines the id of task.
Declaration
public string TaskId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
UniqueID
Defines the unique id of task.
Declaration
public string UniqueID { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(IParent)
Returns boolean value by comparing iParent
Declaration
public bool Equals(IParent iParent)
Parameters
Type | Name | Description |
---|---|---|
IParent | iParent |
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<>