hi
i need to export to excell for the datagrid
i use the same way from your example
i have problem with exporting hebrew language.
i need to export to excell for the datagrid
i use the same way from your example
i have problem with exporting hebrew language.
if (dialog.ShowDialog() == true)
{
using (Stream stream = dialog.OpenFile())
{
radGridView_searchResult.Export(stream,
new GridViewExportOptions()
{
Format = format,
ShowColumnHeaders =
true,
ShowColumnFooters = true,
ShowGroupFooters =
true,
Encoding =
Encoding.GetEncoding("windows-1255"),
});
}
}