--- title: "How to: Draw Wrapped Text in a Rectangle" ms.date: "03/30/2017" dev_langs: - "csharp" - "vb" helpviewer_keywords: - "Windows Forms, drawing text in a rectangle" - "text [Windows Forms], drawing in a rectangle" - "strings [Windows Forms], drawing in a rectangle" ms.assetid: e1fb432a-dc90-48b5-9b6b-acc14507133d --- # How to: Draw Wrapped Text in a Rectangle You can draw wrapped text in a rectangle by using the overloaded method of the class that takes a or parameter. You will also use a and a . You can also draw wrapped text in a rectangle by using the overloaded method of the that takes a and a parameter. You will also use a and a . The following illustration shows the output of text drawn in the rectangle when you use the method: ![Screenshot that shows the output when using DrawString method.](./media/how-to-draw-wrapped-text-in-a-rectangle/drawstring-method-font-text.png) ### To draw wrapped text in a rectangle with GDI+ 1. Use the overloaded method, passing the text you want, or , and . [!code-csharp[System.Drawing.AlignDrawnText#50](~/samples/snippets/csharp/VS_Snippets_Winforms/System.Drawing.AlignDrawnText/CS/Form1.cs#50)] [!code-vb[System.Drawing.AlignDrawnText#50](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.Drawing.AlignDrawnText/VB/Form1.vb#50)] ### To draw wrapped text in a rectangle with GDI 1. Use the enumeration value to specify the text should be wrapped with the overloaded method, passing the text you want, , and . [!code-csharp[System.Drawing.AlignDrawnText#60](~/samples/snippets/csharp/VS_Snippets_Winforms/System.Drawing.AlignDrawnText/CS/Form1.cs#60)] [!code-vb[System.Drawing.AlignDrawnText#60](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.Drawing.AlignDrawnText/VB/Form1.vb#60)] ## Compiling the Code The previous examples require: - `e`, which is a parameter of . ## See also - [How to: Draw Text with GDI](how-to-draw-text-with-gdi.md) - [Using Fonts and Text](using-fonts-and-text.md) - [How to: Construct Font Families and Fonts](how-to-construct-font-families-and-fonts.md) - [How to: Draw Text at a Specified Location](how-to-draw-text-at-a-specified-location.md)