Ejemplo n.º 1
0
 internal Paragraph(TimeCode startTime, TimeCode endTime, string text)
 {
     StartTime = startTime;
     EndTime   = endTime;
     Text      = text;
 }
Ejemplo n.º 2
0
 internal Paragraph(string text, double startTotalMilliseconds, double endTotalMilliseconds)
 {
     StartTime = new TimeCode(TimeSpan.FromMilliseconds(startTotalMilliseconds));
     EndTime   = new TimeCode(TimeSpan.FromMilliseconds(endTotalMilliseconds));
     Text      = text;
 }
Ejemplo n.º 3
0
 internal Paragraph()
 {
     StartTime = new TimeCode(TimeSpan.FromSeconds(0));
     EndTime   = new TimeCode(TimeSpan.FromSeconds(0));
     Text      = string.Empty;
 }