dotnetCHARTING Send comments on this topic.
ImageFormat Enumeration
See Also  
dotnetCHARTING Namespace : ImageFormat Enumeration



Specifies file save format.

Syntax

Visual Basic (Declaration) 
Public Enum ImageFormat 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As ImageFormat
C# 
public enum ImageFormat : Enum 
C++/CLI 
public enum class ImageFormat : public Enum 

Members

MemberDescription
PngSaves an image using the W3C Portable Network Graphics (PNG) image format.
BmpSaves an image as a bitmap (BMP).
JpgSaves an image using the Joint Photographic Experts Group (JPEG) image format.
EmfSaves an image using the enhanced Windows metafile (EMF) image format.
WmfSaves an image using the Windows metafile (WMF) image format.
TifSaves an image using the Tag Image File Format (TIFF) image format.
SwfSaves an image as an Swf flash movie.
PdfSaves an image as a Pdf file.
SvgSaves an image as an Svg file.
XamlSaves an image as an Xaml file.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         dotnetCHARTING.ImageFormat

See Also