ColumnHeader. Is the (Name) a design time property? Or something e

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Is it possible to retrieve the (Name) value from ColumnHeader property? I am
trying to get the value through PropertyDescriptor / PropertyInfo, override
it through new property but it does not seems to work or it is not available
to access. How can I actually do that programmatically in design-time?

Thanks in advance,
 
(Name) is not the property of the component but the name of the member in
the container (the current form for example)

so I think if you want to read this information, you need to take another
way like GetService and good interface of the design system.

I hope it's can help you ...
 
Back
Top