below is my code
Private Sub GVCl_RowFormatting(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.RowFormattingEventArgs) Handles GVClaimHistory.RowFormatting
If InStr(e.RowElement.RowInfo.Cells(0).Value, "MyColumn") <> 0 Then
e.RowElement.DrawFill = True
e.RowElement.GradientStyle = GradientStyles.Solid
e.RowElement.BackColor = Color.Navy
e.RowElement.ForeColor = Color.Yellow
End If
End Sub
I would like to add font bold to this row how can i do it?
I tried e.RowElement.Font.Bold = True
but it gives me Error 74 Property 'Bold' is 'ReadOnly'.
Please help
Private Sub GVCl_RowFormatting(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.RowFormattingEventArgs) Handles GVClaimHistory.RowFormatting
If InStr(e.RowElement.RowInfo.Cells(0).Value, "MyColumn") <> 0 Then
e.RowElement.DrawFill = True
e.RowElement.GradientStyle = GradientStyles.Solid
e.RowElement.BackColor = Color.Navy
e.RowElement.ForeColor = Color.Yellow
End If
End Sub
I would like to add font bold to this row how can i do it?
I tried e.RowElement.Font.Bold = True
but it gives me Error 74 Property 'Bold' is 'ReadOnly'.
Please help