Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SubtitleTrack"/> class.
 /// Copy Constructor
 /// </summary>
 /// <param name="subtitle">
 /// The subtitle.
 /// </param>
 public SubtitleTrack(SubtitleTrack subtitle)
 {
     this.Burned       = subtitle.Burned;
     this.Default      = subtitle.Default;
     this.Forced       = subtitle.Forced;
     this.sourceTrack  = subtitle.SourceTrack;
     this.SrtCharCode  = subtitle.SrtCharCode;
     this.SrtFileName  = subtitle.SrtFileName;
     this.SrtLang      = subtitle.SrtLang;
     this.SrtOffset    = subtitle.SrtOffset;
     this.SrtPath      = subtitle.SrtPath;
     this.SubtitleType = subtitle.SubtitleType;
     this.SourceTrack  = subtitle.SourceTrack;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SubtitleTrack"/> class.
 /// Copy Constructor
 /// </summary>
 /// <param name="subtitle">
 /// The subtitle.
 /// </param>
 public SubtitleTrack(SubtitleTrack subtitle)
 {
     this.Burned = subtitle.Burned;
     this.Default = subtitle.Default;
     this.Forced = subtitle.Forced;
     this.sourceTrack = subtitle.SourceTrack;
     this.SrtCharCode = subtitle.SrtCharCode;
     this.SrtFileName = subtitle.SrtFileName;
     this.SrtLang = subtitle.SrtLang;
     this.SrtOffset = subtitle.SrtOffset;
     this.SrtPath = subtitle.SrtPath;
     this.SubtitleType = subtitle.SubtitleType;
     this.SourceTrack = subtitle.SourceTrack;
 }