Delphi DBGrid TGridDrawState
作者:互联网
Delphi DBGrid TGridDrawState
TGridDrawState表示在渲染网格单元时有用的信息。
原型:
type TGridDrawState = set of (gdSelected, gdFocused, gdFixed);
TGridDrawState表示有关正在渲染的网格单元的状态信息。它是一个集合,包含以下0项或多项:
- gdSelected //当前选定单元格。
- gdFocused //单元格具有输入焦点。
- gdFixed //单元格位于网格的固定区域中。
使用示例:
if gdSelected in State then DBGrid.Canvas.Font.Color:=clWindow DBGrid.Canvas.FillRect(Rect);
或者:
if State=[gdSelected] then
创建时间:2021.10.21 更新时间:
标签:DBGrid,Canvas,Delphi,单元格,网格,gdSelected,TGridDrawState 来源: https://www.cnblogs.com/guorongtao/p/15433265.html