バージョン

SaveTo(String,ImageFormat) メソッド

サーバー上のローカル ファイルに現在のチャート画像を保存します。
シンタックス
'宣言
 
Public Overloads Sub SaveTo( _
   ByVal filePath As String, _
   ByVal imageType As ImageFormat _
) 
public void SaveTo( 
   string filePath,
   ImageFormat imageType
)

パラメータ

filePath
保存される画像のフル パスとファイル名。
imageType
画像のファイル フォーマット、ImageType 列挙体からの値を使用して指定。
解説

このメソッドはサーバー上のローカル ファイルに現在のチャート画像を保存します。ファイルが保存されると、ImageURL プロパティは画像ファイルの URL を返します。

使用例
' create a stream to save the chart image to
Dim mS as New System.IO.MemoryStream()
' call the SaveTo method using the Stream and any ImageFormat
Me.UltraChart1.SaveTo(mS, System.Drawing.Imaging.ImageFormat.Bmp)
' it is possible to retrieve the image later using Image.FromStream
Dim myImage as System.Drawing.Image = System.Drawin.Image.FromStream(mS)

' or, just save the chart using a specified file path.
this.ultraChart1.SaveTo(Application.StartupPath & "\myChart.png", System.Drawing.Imaging.ImageFormat.Png)
// create a stream to save the chart image to
System.IO.MemoryStream mS = new System.IO.MemoryStream();
// call the SaveTo method using the Stream and any ImageFormat
this.ultraChart1.SaveTo(mS, System.Drawing.Imaging.ImageFormat.Bmp);
// it is possible to retrieve the image later using Image.FromStream
System.Drawing.Image myImage = System.Drawing.Image.FromStream(mS);

// or, just save the chart using a specified file path.
this.ultraChart1.SaveTo(Application.StartupPath + @"\myChart.png", System.Drawing.Imaging.ImageFormat.Png);
参照