Class TimelineFormat
Defines the timeline format
Inheritance
System.Object
TimelineFormat
Implements
System.IEquatable<TimelineFormat>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class TimelineFormat : Object, IEquatable<TimelineFormat>
Constructors
TimelineFormat()
Declaration
public TimelineFormat()
Properties
CompletedWidth
Defines timeline width
Declaration
public double CompletedWidth { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
EndDate
Defines end date
Declaration
public Nullable<DateTime> EndDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
Height
Defines height
Declaration
public double Height { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
IsFinished
Defines finished status of timeline
Declaration
public bool IsFinished { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsWeekend
Defines weekend status of timeline
Declaration
public bool IsWeekend { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
StartDate
Defines start date
Declaration
public Nullable<DateTime> StartDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
Style
Defines Pdf Gantt cell style
Declaration
public PdfGanttCellStyle Style { get; set; }
Property Value
Type | Description |
---|---|
PdfGanttCellStyle |
Value
Defines value
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Width
Defines width
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(TimelineFormat)
Returns boolean value by comparing timelineFormat
Declaration
public bool Equals(TimelineFormat timelineFormat)
Parameters
Type | Name | Description |
---|---|---|
TimelineFormat | timelineFormat |
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<>