or


void _radGV_RowFormatting(object sender, RowFormattingEventArgs e){ e.RowElement.BorderBoxStyle = BorderBoxStyle.SingleBorder; e.RowElement.BorderGradientStyle = GradientStyles.Solid; if (e.RowElement.IsCurrent) { System.Drawing.Color c = System.Drawing.Color.LightBlue; e.RowElement.BackColor = c; e.RowElement.BackColor2 = c; e.RowElement.BackColor3 = c; e.RowElement.BackColor4 = c; e.RowElement.GradientStyle = GradientStyles.Solid; e.RowElement.BorderColor = c; e.RowElement.BorderColor2 = c; e.RowElement.BorderColor3 = c; e.RowElement.BorderColor4 = c;
}}