我正在打印telerik GridView,在某些情况下我想要隐藏单元格的左右边框。我尝试了下面的代码,但它没有工作,因为它也删除了顶部和底部边框。
private void radGridView1_PrintCellFormatting(object sender, PrintCellFormattingEventArgs e) { if (e.Row is GridViewDataRowInfo) { string s = (string)e.Row.Cells[0].Value; if (s == "Total" || s=="") { e.PrintCell.DrawFill = true; e.PrintCell.Font = new System.Drawing.Font(radGridView1.Font, FontStyle.Bold); e.PrintCell.DrawBorder = false; } } }
我怎么才能删除左右边框...