exposing more than one property through extender provider

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

Hi folks,

As always help is appreciated.


I'm implementing an extender provider, but would like to extend a few
properties, not just one. Any idea on how to do this without writing a new
extender component for each property?

Also, the property extended shows up in the misc. section of the controls in
my container's property page. Any idea how to group it under a specific
category? I've tried using the category attribute before the class name, as
you would use it before a property name with a normal property, but no
luck.

Thanks in advance
Paul
 
For additional properties, add more than one ProvidePropertyAttribute the extender class.

Place the attributes for the extender property on the Get<property> method.
 
Back
Top