Team,
What property is available on a RadSpreadsheet to find if the workbook/activeWorkSheet is empty ?
Currently Im using the below code to find the same.
var stream = new MemoryStream();
new XlsxFormatProvider().Export(radSpreadsheet.Workbook, stream);
if (stream.Length == 3309)
{
//Empty Workbook
}
What property is available on a RadSpreadsheet to find if the workbook/activeWorkSheet is empty ?
Currently Im using the below code to find the same.
var stream = new MemoryStream();
new XlsxFormatProvider().Export(radSpreadsheet.Workbook, stream);
if (stream.Length == 3309)
{
//Empty Workbook
}