C# Window.Forms.Label Html Text

  • Thread starter Thread starter sitemap
  • Start date Start date
S

sitemap

Hello,

Can anyone tell me - is it possible to visualize html formatted
string in Window.Forms.Label.Text?

Thank You
 
Label controls only support raw unicode text. You can set the formatting
properties of the entire control; but not sub-regions of the text it displays.

For something like that you should use a RichTextBox or a web browser control.
 
Thank You.

Peter said:
Label controls only support raw unicode text. You can set the formatting
properties of the entire control; but not sub-regions of the text it displays.

For something like that you should use a RichTextBox or a web browser control.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top