如何以简单安全的方式扩展 TFieldDef?
我需要有关 TFieldDef 问题的建议。我需要向 TFieldDef 添加一个名为 Description 的附加字符串属性。我想在迭代 TFieldDefs 集合时看到该属性。如何在 Delphi 2007 中做到这一点?
感谢您抽出时间。
I need an advice in problem with TFieldDef. I need to add one additional string property to the TFieldDef called Description. I want to see that property when I iterate over TFieldDefs collection. How to do this in Delphi 2007?
Thanks for your time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数情况下,你不能。但您可以重新利用其他属性,例如
DisplayName
或Tag
。您还可以编写一个类助手,但您必须将数据存储在其他地方。Mostly, you can't. But you can re-purpose another property such as
DisplayName
orTag
. You could also write a class helper, but you'd have to store the data elsewhere.