GanttChartDependencyType

public enum GanttChartDependencyType : Equatable, Hashable, CaseIterable

Undocumented

  • Dependency that spans from the finish time of an item to the start time of another.

    Declaration

    Swift

    case fromFinishToStart
  • Dependency that spans from the start time of an item to the start time of another.

    Declaration

    Swift

    case fromStartToStart
  • Dependency that spans from the finish time of an item to the finish time of another.

    Declaration

    Swift

    case fromFinishToFinish
  • Dependency that spans from the start time of an item to the finish time of another.

    Declaration

    Swift

    case fromStartToFinish
  • Initializes a combined dependency type based on from and to dependency type values.

    Declaration

    Swift

    public init(fromType: GanttChartDependencyEndType, toType: GanttChartDependencyEndType)
  • Collects the from dependency type value of the combined dependency type.

    Declaration

    Swift

    public var fromType: GanttChartDependencyEndType { get }
  • Collects the to dependency type value of the combined dependency type.

    Declaration

    Swift

    public var toType: GanttChartDependencyEndType { get }
  • Indicates whether a dependency of the type would span from the finish time (rather than from the start time) of an item.

    Declaration

    Swift

    public var isFromEntropic: Bool { get }
  • Indicates whether a dependency of the type would span to the start time (rather than from the finish time) of an item.

    Declaration

    Swift

    public var isToEntropic: Bool { get }