如何在C1flexgrid中创建行或列有一个粗体格式?
我的意思是,我有这样的编码:
Com_B1B2.Parameters("Param1").Value = gDate2
Com_B1B2.ParameterCheck = True
OraDA = New OracleDataAdapter(Com_B1B2)
OraDA.Fill(OraDT)
VLX_B1B2.DataSource = OraDT
VLX_B1B2.Cols(0).Width = 0
有人可以帮忙吗?
答案 0 :(得分:2)
答案 1 :(得分:2)
要使任何行/列的字体变为粗体,您可以使用以下代码段:
void MakeColumnBold(int ColNo, C1FlexGrid grid)
{
CellStyle cs = grid.Cols[ColNo].StyleNew;
cs.Font = new Font(grid.Font.Name, grid.Font.Size, FontStyle.Bold);
}
void MakeRowBold(int RowNo, C1FlexGrid grid)
{
CellStyle cs = grid.Rows[RowNo].StyleNew;
cs.Font = new Font(grid.Font.Name, grid.Font.Size, FontStyle.Bold);
}
答案 2 :(得分:0)
我认为最好只定义一次样式,而不是在每一行中复制它:
Dim cs As C1.Win.C1FlexGrid.CellStyle = grid.Styles.Add("FontBold")
cs.Font = New Font(grid.Font.Name, grid.Font.Size, FontStyle.Bold)
'to get styles elsewhere (after created once): grid.styles("FontBold")
grid.SetCellStyle(3, 4, "FontBold") 'set just one cell
grid.Cols(6).Style = cs 'set complete column
grid.Rows(6).Style = cs 'set complete row