以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]当前1行才单元格绘制 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=176829) |
-- 作者:miaoqingqing -- 发布时间:2022/4/28 9:57:00 -- [求助]当前1行才单元格绘制 If e.Table.Current Is Nothing Then Return If e.Col.Name = "必填" Then If e.Row.IsNull("必填") = True Then e.style = "黄色" End If End If 上面代码是 必填 整列,都单元格绘制 求助修改为,只是当前行的 必填列才单元格绘制
|
-- 作者:有点蓝 -- 发布时间:2022/4/28 10:24:00 -- If e.Col.Name = "必填" Then If e.Row.IsNull("必填") = True andalso e.Row.index = e.table.rowsel Then e.style = "黄色" End If End If
|