Hi,
Can any one help me to find a solution for adding a scroll bar for the Label control.
regards,
Ceaser
Ceaser,
I don't believe that the UltraLabel has support for showing scrollbars, since the .NET Label control that it mimics does not have this funtionality either. Fortunately, the UltraFormattedLinkLabel can support scrollbars; set the ScrollbarDisplayStyle to Automatic or Always.
-Matt
Thanks for the reply and it suits the requirement.
Is there any Multiline property available for this control?
Regards,
The UltraFormattedLinkLabel doesn't have a Multiline property because it inherently supports multiple lines, i.e.:
this.ultraFormattedLinkLabel1.Text = "text\ntext";
You could also open the UITypeEditor of the Value property (click on the '...' in the property grid) to open a dialog that shows you more complex editing features that are available.