Procedura: creare testo disposto su più righe in un rettangolo
È possibile creare testo disposto su più righe in un rettangolo utilizzando il metodo di overload DrawString della classe Graphics che accetta un parametro Rectangle o RectangleF. Verranno inoltre utilizzate una classe Brush e una classe Font.
È possibile creare testo disposto su più righe in un rettangolo anche utilizzando il metodo di overload DrawText della classe TextRenderer che accetta una struttura Rectangle e un parametro TextFormatFlags. Verranno inoltre utilizzate una classe Color e una classe Font.
Nell'immagine riportata di seguito viene illustrato il risultato della creazione di testo nel rettangolo quando si utilizza il metodo DrawString.
Per creare testo disposto su più righe in un rettangolo con GDI+
Utilizzare il metodo di overload DrawString per passare il testo desiderato, la struttura Rectangle o RectangleF, la classe Font e la classe Brush.
Dim text1 As String = "Draw text in a rectangle by passing a RectF to the DrawString method." Dim font1 As New Font("Arial", 12, FontStyle.Bold, GraphicsUnit.Point) Try Dim rectF1 As New RectangleF(30, 10, 100, 122) e.Graphics.DrawString(text1, font1, Brushes.Blue, rectF1) e.Graphics.DrawRectangle(Pens.Black, Rectangle.Round(rectF1)) Finally font1.Dispose() End Try
string text1 = "Draw text in a rectangle by passing a RectF to the DrawString method."; using (Font font1 = new Font("Arial", 12, FontStyle.Bold, GraphicsUnit.Point)) { RectangleF rectF1 = new RectangleF(30, 10, 100, 122); e.Graphics.DrawString(text1, font1, Brushes.Blue, rectF1); e.Graphics.DrawRectangle(Pens.Black, Rectangle.Round(rectF1)); }
Per creare testo disposto su più righe in un rettangolo con GDI
Utilizzare il valore dell'enumerazione TextFormatFlags per specificare che il testo dovrà essere disposto su più righe con il metodo di overload DrawText che passa il testo desiderato, la struttura Rectangle, la classe Font e la struttura Color.
Dim text2 As String = _ "Draw text in a rectangle by passing a RectF to the DrawString method." Dim font2 As New Font("Arial", 12, FontStyle.Bold, GraphicsUnit.Point) Try Dim rect2 As New Rectangle(30, 10, 100, 122) ' Specify the text is wrapped. Dim flags As TextFormatFlags = TextFormatFlags.WordBreak TextRenderer.DrawText(e.Graphics, text2, font2, rect2, Color.Blue, flags) e.Graphics.DrawRectangle(Pens.Black, Rectangle.Round(rect2)) Finally font2.Dispose() End Try
string text2 = "Draw text in a rectangle by passing a RectF to the DrawString method."; using (Font font2 = new Font("Arial", 12, FontStyle.Bold, GraphicsUnit.Point)) { Rectangle rect2 = new Rectangle(30, 10, 100, 122); // Specify the text is wrapped. TextFormatFlags flags = TextFormatFlags.WordBreak; TextRenderer.DrawText(e.Graphics, text2, font2, rect2, Color.Blue, flags); e.Graphics.DrawRectangle(Pens.Black, Rectangle.Round(rect2)); }
Compilazione del codice
Gli esempi precedenti richiedono:
- PaintEventArgs e, ovvero un parametro di PaintEventHandler.
Vedere anche
Attività
Procedura: creare testo con GDI
Procedura: creare caratteri e gruppi di caratteri
Procedura: creare testo in una posizione specificata