Class PredecessorTooltip
Class that defines the predecessor tooltip details.
Inheritance
System.Object
PredecessorTooltip
Implements
System.IEquatable<PredecessorTooltip>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class PredecessorTooltip : Object, IEquatable<PredecessorTooltip>
Constructors
PredecessorTooltip()
Declaration
public PredecessorTooltip()
Properties
FromId
Defines the from id of predecessor.
Declaration
public string FromId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FromName
Defines the from name of predecessor.
Declaration
public string FromName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LinkText
Defines the link text of predecessor.
Declaration
public string LinkText { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LinkType
Defines the link type of predecessor.
Declaration
public string LinkType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Offset
Defines the offset value of predecessor.
Declaration
public double Offset { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
OffsetString
Defines the offset string value of predecessor.
Declaration
public string OffsetString { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OffsetUnit
Defines the offset unit of predecessor.
Declaration
public string OffsetUnit { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ToId
Defines the to id of predecessor.
Declaration
public string ToId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ToName
Defines the to name of predecessor.
Declaration
public string ToName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(PredecessorTooltip)
Returns boolean value by comparing predecessorTooltip
Declaration
public bool Equals(PredecessorTooltip predecessorTooltip)
Parameters
Type | Name | Description |
---|---|---|
PredecessorTooltip | predecessorTooltip |
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<>