以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  列名的字体和列的高度  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=110105)

--  作者:LTHERO
--  发布时间:2017/11/26 17:21:00
--  列名的字体和列的高度
有没有方法,可以修改列名的字体大小 和列的高度

谢谢!

--  作者:有点甜
--  发布时间:2017/11/26 17:57:00
--  
Dim tb As Table = Tables("表A")
Dim cs1 As C1.Win.C1FlexGrid.CellStyle = tb.Grid.Styles.Add("样式1")
Dim rng As C1.Win.C1FlexGrid.CellRange = tb.Grid.GetCellRange(0,2,0,2)
cs1.font = new font("宋体", 20)
rng.style = cs1
tb.grid.rows(0).height = 50