I am creating a label in c# (random text, just as an example):
Label lblText = new Label();
lblText.Text = "A computer is a general purpose device that can be programmed to carry out a set of arithmetic or logical operations. Since a sequence of operations can be readily changed, the computer can solve more than one kind of problem.";
lblText.Location = new Point(48, 95);
But when it is displayed I can only see: "A computer is a"
How can I display the entire text?
EDIT: AutoSize worked, but it goes beyond the window's border, is there anything like "autoNewLine"? to keep the text inside the window