Hello,
Is there is way to change the border width of a label? For example if the borderstyle is FixedSingle or Fixed3D, can the size of the effect be changed?
Thanks!
Printable View
Hello,
Is there is way to change the border width of a label? For example if the borderstyle is FixedSingle or Fixed3D, can the size of the effect be changed?
Thanks!
For instance:
Is that what you meant?VB Code:
Label1.BorderStyle = BorderStyle.Fixed3D Label1.Height = 50 Label1.Width = 300
Thanks but no.
That sets the borderstyle to Fixed3D and then sets the width and height of the label.
If possible, I want to change the 3D effect........or........if the borderstyle is FixedSingle (with the line around the label) then I want to increase the size of that line. In other words, I want to increase the border size.
Thanks!
So why don't you make your own UserControl and use that instead of a Label?
I guess I will have to check into that, but I am already using the label for alot of other things.
Thanks