Designtime support (Comment) to server control

  • Thread starter Thread starter wapsiii
  • Start date Start date
W

wapsiii

I'd like to add comment attributes to a custom server control (the
little help text/tooltip that appears for some server controls at the
bottom of the properties pane in vs)

How is this possible?

<HelpText...
Property x() as string
get...
set...
End Property
 
<System.ComponentModel.Description("My help text")> _
Property x() as string
get...
set...
End Property
 
Back
Top