0

我有一个 Telerik radGridView1,我将它导出到 excel,但 excel 文件中没有显示边框。那么如何用边框导出它。我正在以这种方式导出...

ExportToExcelML export = new ExportToExcelML(this.radGridView1);
export.ExportVisualSettings = true;
export.RunExport(saveFileDialog1.FileName);

提前致谢

4

2 回答 2

0

ExcelCellFormatting活动可能会帮助您:

它提供对单个单元格的 SingleStyleElement 的访问,允许您为与导出的 RadGridView 相关的每个 excel 单元格进行其他格式设置(添加边框、设置对齐、文本字体、颜色、更改单元格值等):

void exporter_ExcelCellFormatting(object sender,Telerik.WinControls.UI.Export.ExcelML.ExcelCellFormattingEventArgs e)
{
    if (e.GridRowInfoType == typeof(GridViewTableHeaderRowInfo))
    {
        BorderStyles border = new BorderStyles();
        border.Color = Color.Black;
        border.Weight = 2;
        border.LineStyle = LineStyle.Continuous;
        border.PositionType = PositionType.Bottom;
        e.ExcelStyleElement.Borders.Add(border);
    }
    else if (e.GridRowIndex == 2 && e.GridColumnIndex == 1)
    {
        e.ExcelStyleElement.InteriorStyle.Color = Color.Yellow;
        e.ExcelStyleElement.AlignmentElement.WrapText = true;
    }
}

点击这里了解更多信息。

于 2012-10-25T13:52:43.333 回答
0

您需要在导出之前为边框设置 rad 网格的以下属性

this.radGridView1.GridLines = Both;
this.radGridView1.BorderStyle = BorderStyle.Solid;
ExportToExcelML export = new ExportToExcelML(this.radGridView1);
export.ExportVisualSettings = true;
export.RunExport(saveFileDialog1.FileName);
于 2012-10-25T07:54:48.253 回答