コード例 #1
0
 internal static string GetMIMEType(ImageMIMEType mimeType)
 {
     return(MIMETypeValues[mimeType]);
 }
コード例 #2
0
ファイル: CellViewType.cs プロジェクト: jakedw7/iAM
 public static CellViewImage CreateDatabaseImage(ImageMIMEType mimeType)
 {
     return(new CellViewImage(ImageSource.Database, mimeType));
 }
コード例 #3
0
 public DatabaseImage(ImageMIMEType mimeType) : base(ImageSource.Database, mimeType)
 {
 }
コード例 #4
0
ファイル: CellViewType.cs プロジェクト: jakedw7/iAM
 private CellViewImage(ImageSource source, ImageMIMEType mimeType)
     : this(source)
 {
     _imageProperties.MIMEType = mimeType;
 }