or
Me
.RadGridView1.Columns(
"Date"
).ExcelExportType = DisplayFormatType.Custom
Me
.RadGridView1.Columns(
"Date"
).ExcelExportFormatString =
" mm/dd/yyyy "
Dim
exporter
As
Export.ExportToExcelML =
New
Export.ExportToExcelML(
Me
.RadGridView1)
exporter.FileExtension =
"xls"
exporter.HiddenColumnOption = HiddenOption.DoNotExport
exporter.ExportVisualSettings =
True
exporter.RunExport(fileName)
GridView.Rows[4].Cells[myColumn.name].Value
int
rowIndex = RadGridView1.Rows.Add(
"column1Text"
,
"column2Text"
,
"Column3Text"
);
RadGridView1.Rows[rowIndex].Cells[
"FirstColumn"
].?? (ToolTipText property) =
"ToolTipValue"
;