コード例 #1
0
 public void AddImage(NSImage image, QTTime forDuration, QTImageAttributes attributes)
 {
     if (attributes == null)
     {
         throw new ArgumentNullException("attributes");
     }
     AddImage(image, forDuration, attributes.ToDictionary());
 }
コード例 #2
0
ファイル: Defs.cs プロジェクト: sichy/monomac
 public QTTimeRange(QTTime time, QTTime duration)
 {
     Time = time;
     Duration = duration;
 }
コード例 #3
0
 public QTTimeRange(QTTime time, QTTime duration)
 {
     Time     = time;
     Duration = duration;
 }
コード例 #4
0
ファイル: QTMovie.cs プロジェクト: Anomalous-Software/monomac
		public void AddImage (NSImage image, QTTime forDuration, QTImageAttributes attributes)
		{
			if (attributes == null)
				throw new ArgumentNullException ("attributes");
			AddImage (image, forDuration, attributes.ToDictionary ());
		}