UltraGridExcelExporter コンポーネントを利用することで、UltraGrid のデータをエクセルにエクスポートすることができます。

UltraGridExcelExporter の Export メソッドに、UltraGrid のインスタンスを渡します。エクセルのファイル名を指定する際には、Export メソッドの第2引数を利用します。

private void ultraButton1_Click(object sender, EventArgs e)
{
    //エクセルのファイル名
    string fileName = "製品一覧.xlsx";
    //UltraGrid のデータをエクスポートする
    this.ultraGridExcelExporter1.Export(this.ultraGrid1, fileName);
    //エクセルファイルを開く
    System.Diagnostics.Process.Start(fileName);
}

参考ページ

グリッドデータを Excel にエクスポートするhttps://jp.infragistics.com/help/winforms/wingridexcelexporter-export-grid-data-to-excel

Tagged:

製品について

Ultimate UI for Windows Forms