Class IWorkingTimeRange
Class that defines the working time range details.
Inheritance
System.Object
IWorkingTimeRange
Implements
System.IEquatable<IWorkingTimeRange>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class IWorkingTimeRange : Object, IEquatable<IWorkingTimeRange>
Constructors
IWorkingTimeRange()
Declaration
public IWorkingTimeRange()
Properties
Color
Defines color customization of working time range.
Declaration
public string Color { get; set; }
Property Value
Type | Description |
---|---|
System.String |
From
Defines the from value.
Declaration
public double From { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Interval
Defines the working time interval.
Declaration
public double Interval { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
IsWorking
Defines the working status.
Declaration
public bool IsWorking { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
To
Defines the to value.
Declaration
public double To { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(IWorkingTimeRange)
Returns boolean value by comparing iWorkingTimeRange
Declaration
public bool Equals(IWorkingTimeRange iWorkingTimeRange)
Parameters
Type | Name | Description |
---|---|---|
IWorkingTimeRange | iWorkingTimeRange |
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<>