TVirtualStringTree:OnGetText 事件中的 Column 参数是什么?
TVirtualStringTree: What is Column parameter in OnGetText event?
OnGetText 事件过程定义为:
TVSTGetTextEvent = procedure (Sender: TBaseVirtualTree; Node: PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType; var CellText: UnicodeString) of object;
此事件的文档 CHM 帮助文件只是说:
Use other resources like the news group or the Delphi Gems message
board to find a description.
我在 SO 上看到其他一些帖子,他们正在检查此事件中的 (Column < 0),所以我很好奇这是什么?
FWIW,我正在尝试从数据库数据实现父子树视图。
您可以在虚拟树的 Header.Columns
集合中定义列。传递给指定事件方法的 Column
参数是此集合中列的基于 0 的索引。
Column
参数值可以是已处理列的基于 0 的索引,或 NoColumn
(内部值为 -1),这表明您的虚拟中没有列树.
OnGetText 事件过程定义为:
TVSTGetTextEvent = procedure (Sender: TBaseVirtualTree; Node: PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType; var CellText: UnicodeString) of object;
此事件的文档 CHM 帮助文件只是说:
Use other resources like the news group or the Delphi Gems message board to find a description.
我在 SO 上看到其他一些帖子,他们正在检查此事件中的 (Column < 0),所以我很好奇这是什么?
FWIW,我正在尝试从数据库数据实现父子树视图。
您可以在虚拟树的 Header.Columns
集合中定义列。传递给指定事件方法的 Column
参数是此集合中列的基于 0 的索引。
Column
参数值可以是已处理列的基于 0 的索引,或 NoColumn
(内部值为 -1),这表明您的虚拟中没有列树.