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.
 
Back
Top