Is it possible to set the height and width of a label control in WinForms application?
Sushil Kumar
Select an image from your device to upload
// Creating and setting the labelLabel mylab = new Label();mylab.Text = “GeeksforGeeks”;mylab.Location = new Point(222, 90);mylab.Size = new Size(120, 25);mylab.BorderStyle = BorderStyle.FixedSingle;
// Adding this control to the formthis.Controls.Add(mylab);