共用方式為


HOW TO:在矩形中繪製被包圍的文字

您可以使用取得 RectangleRectangleF 參數之 Graphics 類別的 DrawString 多載方法,在矩形中繪製被包圍的文字。 您也會使用 BrushFont

您也可以使用取得 RectangleTextFormatFlags 參數之 TextRendererDrawText 多載方法,在矩形中繪製被包圍的文字。 您也會使用 ColorFont

下列圖例示範了在使用 DrawString 方法時,於矩形中繪製文字的輸出。

字型文字

若要使用 GDI+ 在矩形中繪製被包圍的文字

  • 使用 DrawString 多載方法、傳遞想要的文字、RectangleRectangleFFont 然後 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));
    }
    

若要使用 GDI 在矩形中繪製被包圍的文字

  • 使用 TextFormatFlags 列舉值指定應該被 DrawText 多載方法包圍的文字、傳遞想要的文字、RectangleFont 然後 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));
    
    }
    

編譯程式碼

前一個範例需要:

請參閱

工作

HOW TO:使用 GDI 繪製文字

HOW TO:建構字型系列和字型

HOW TO:在指定的位置繪製文字

其他資源

使用字型和文字