Class LabelSettingsModel
Class that defines label settings model.
Inheritance
System.Object
LabelSettingsModel
Implements
System.IEquatable<LabelSettingsModel>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class LabelSettingsModel : Object, IEquatable<LabelSettingsModel>
Constructors
LabelSettingsModel()
Declaration
public LabelSettingsModel()
Properties
LeftLabel
Defines left side label of task.
Declaration
public string LeftLabel { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RightLabel
Defines right side label of task.
Declaration
public string RightLabel { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TaskLabel
Defines label which is placed inside the taskbar.
Declaration
public string TaskLabel { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(LabelSettingsModel)
Returns boolean value by comparing labelSettingsModel
Declaration
public bool Equals(LabelSettingsModel labelSettingsModel)
Parameters
Type | Name | Description |
---|---|---|
LabelSettingsModel | labelSettingsModel |
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<>