Chart.SaveImage Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Enregistre l’image dans la cible spécifiée.
Surcharges
SaveImage(String, ChartImageFormat) |
Enregistre l'image de graphique dans le fichier spécifié. |
SaveImage(String, ImageFormat) |
Enregistre une image dans le fichier spécifié. |
SaveImage(Stream, ImageFormat) |
Enregistre l’image dans le flux spécifié. |
SaveImage(Stream, ChartImageFormat) |
Enregistre l'image de graphique dans le flux spécifié. |
SaveImage(String, ChartImageFormat)
Enregistre l'image de graphique dans le fichier spécifié.
public:
void SaveImage(System::String ^ imageFileName, System::Windows::Forms::DataVisualization::Charting::ChartImageFormat format);
public void SaveImage (string imageFileName, System.Windows.Forms.DataVisualization.Charting.ChartImageFormat format);
member this.SaveImage : string * System.Windows.Forms.DataVisualization.Charting.ChartImageFormat -> unit
Public Sub SaveImage (imageFileName As String, format As ChartImageFormat)
Paramètres
- imageFileName
- String
Nom du fichier dans lequel l'image est enregistrée.
- format
- ChartImageFormat
Format de l'image du graphique.
S’applique à
SaveImage(String, ImageFormat)
Enregistre une image dans le fichier spécifié.
public:
void SaveImage(System::String ^ imageFileName, System::Drawing::Imaging::ImageFormat ^ format);
public void SaveImage (string imageFileName, System.Drawing.Imaging.ImageFormat format);
member this.SaveImage : string * System.Drawing.Imaging.ImageFormat -> unit
Public Sub SaveImage (imageFileName As String, format As ImageFormat)
Paramètres
- imageFileName
- String
Nom du fichier dans lequel l'image est enregistrée.
- format
- ImageFormat
Format d'image.
S’applique à
SaveImage(Stream, ImageFormat)
Enregistre l’image dans le flux spécifié.
public:
void SaveImage(System::IO::Stream ^ imageStream, System::Drawing::Imaging::ImageFormat ^ format);
public void SaveImage (System.IO.Stream imageStream, System.Drawing.Imaging.ImageFormat format);
member this.SaveImage : System.IO.Stream * System.Drawing.Imaging.ImageFormat -> unit
Public Sub SaveImage (imageStream As Stream, format As ImageFormat)
Paramètres
- imageStream
- Stream
Flux dans lequel l'image est enregistrée.
- format
- ImageFormat
Format d'image.
S’applique à
SaveImage(Stream, ChartImageFormat)
Enregistre l'image de graphique dans le flux spécifié.
public:
void SaveImage(System::IO::Stream ^ imageStream, System::Windows::Forms::DataVisualization::Charting::ChartImageFormat format);
public void SaveImage (System.IO.Stream imageStream, System.Windows.Forms.DataVisualization.Charting.ChartImageFormat format);
member this.SaveImage : System.IO.Stream * System.Windows.Forms.DataVisualization.Charting.ChartImageFormat -> unit
Public Sub SaveImage (imageStream As Stream, format As ChartImageFormat)
Paramètres
- imageStream
- Stream
Flux dans lequel l'image est enregistrée.
- format
- ChartImageFormat
Format de l'image du graphique.