Table of Contents

Struct ProjectChapter

Namespace
Ofs
Assembly
Ofs.Api.dll

A named chapter: a time range with a color.

public readonly record struct ProjectChapter : IEquatable<ProjectChapter>
Implements

Constructors

ProjectChapter(double, double, uint, string)

A named chapter: a time range with a color.

public ProjectChapter(double Start, double End, uint Color, string Name)

Parameters

Start double
End double
Color uint
Name string

Properties

Color

public uint Color { get; init; }

Property Value

uint

End

public double End { get; init; }

Property Value

double

Name

public string Name { get; init; }

Property Value

string

Start

public double Start { get; init; }

Property Value

double