Foxtable(狐表)用户栏目专家坐堂 → 如何对鼠标选定区域进行字体设置


  共有2411人关注过本帖树形打印复制链接

主题:如何对鼠标选定区域进行字体设置

帅哥哟,离线,有人找我吗?
lsy
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:5246 积分:33163 威望:0 精华:8 注册:2013/1/17 21:28:00
  发帖心情 Post By:2015/5/30 17:32:00 [显示全部帖子]

Dim t As Table = CurrentTable
Dim ns As C1.Win.C1FlexGrid.CellStyle = t.Grid.Styles.Add("自定义样式")
ns.BackColor = Color.White
ns.ForeColor = Color.Red
ns.Font = New Font("宋体", 10, FontStyle.Bold)
For i As Integer = t.TopPosition To t.BottomPosition
    For j As Integer = t.LeftCol To t.RightCol
        t.Grid.SetCellStyle(i + 1,j + 1,ns)
    Next
Next

 回到顶部