7 instantiations of SupportedImageFormats
System.Workflow.ComponentModel (7)
AuthoringOM\Design\CommandSet.cs (7)
740
supportedFormats.Add(new
SupportedImageFormats
(DR.GetString(DR.BMPImageFormat), ImageFormat.Bmp));
741
supportedFormats.Add(new
SupportedImageFormats
(DR.GetString(DR.JPEGImageFormat), ImageFormat.Jpeg));
742
supportedFormats.Add(new
SupportedImageFormats
(DR.GetString(DR.PNGImageFormat), ImageFormat.Png));
743
supportedFormats.Add(new
SupportedImageFormats
(DR.GetString(DR.TIFFImageFormat), ImageFormat.Tiff));
744
supportedFormats.Add(new
SupportedImageFormats
(DR.GetString(DR.WMFImageFormat), ImageFormat.Wmf));
745
supportedFormats.Add(new
SupportedImageFormats
(DR.GetString(DR.EXIFImageFormat), ImageFormat.Exif));
746
supportedFormats.Add(new
SupportedImageFormats
(DR.GetString(DR.EMFImageFormat), ImageFormat.Emf));
3 references to SupportedImageFormats
System.Workflow.ComponentModel (3)
AuthoringOM\Design\CommandSet.cs (3)
739
List<
SupportedImageFormats
> supportedFormats = new List<
SupportedImageFormats
>();
753
foreach (
SupportedImageFormats
format in supportedFormats)