0
我在asp.net應用程序中遇到了我的radgrid問題。將網格數據導出爲excel時,我需要向特定單元格添加少量樣式。爲了達到這個目的,我使用了radgrid的ExcelExportCellFormatting事件。使用ExcelExportCellFormatting事件提供css類到excel單元格radgid
Protected Sub RadGrid1_ExcelExportCellFormatting(ByVal source As Object, ByVal e As ExcelExportCellFormattingEventArgs) Handles RadGrid1.ExcelExportCellFormatting
If <condition> Then
e.Cell.Style("background-color") = Red
End If
End Sub
此代碼工作正常。但我該如何替換e.Cell.Style(「background-color」)= Red,並將css賦予該單元格。這可能嗎?