コード例 #1
0
 public bool SaveTo(string fileName, QTMovieSaveOptions options)
 {
     return(SaveTo(fileName, options == null ? null : options.ToDictionary()));
 }
コード例 #2
0
ファイル: QTMovie.cs プロジェクト: Anomalous-Software/monomac
		public bool SaveTo (string fileName, QTMovieSaveOptions options, out NSError error)
		{
			return SaveTo (fileName, options == null ? null : options.ToDictionary (), out error);
		}
コード例 #3
0
 public bool SaveTo(string fileName, QTMovieSaveOptions options, out NSError error)
 {
     return(SaveTo(fileName, options == null ? null : options.ToDictionary(), out error));
 }
コード例 #4
0
ファイル: QTMovie.cs プロジェクト: Anomalous-Software/monomac
		public bool SaveTo (string fileName, QTMovieSaveOptions options)
		{
			return SaveTo (fileName, options == null ? null : options.ToDictionary ());
		}