Graphics.DrawString メソッド (String, Font, Brush, Single, Single)
指定した位置に、指定した Brush オブジェクトと Font オブジェクトで、指定した文字列を描画します。
Overloads Public Sub DrawString( _
ByVal s As String, _ ByVal font As Font, _ ByVal brush As Brush, _ ByVal x As Single, _ ByVal y As Single _)
[C#]
public void DrawString(strings,Fontfont,Brushbrush,floatx,floaty);
[C++]
public: void DrawString(String* s,Font* font,Brush* brush,floatx,floaty);
[JScript]
public function DrawString(
s : String,font : Font,brush : Brush,x : float,y : float);
パラメータ
- s
描画する文字列。 - font
文字列のテキスト形式を定義する Font オブジェクト。 - brush
描画するテキストの色とテクスチャを決定する Brush オブジェクト。 - x
描画するテキストの左上隅の x 座標。 - y
描画するテキストの左上隅の y 座標。
戻り値
このメソッドは値を返しません。
使用例
[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。
- 描画する文字列を作成します。
- フォントを Arial (16 ポイント) に定義します。
- 描画に使用する黒いソリッド ブラシを作成します。
- テキストを描画する左上隅の点を作成します。
- フォント、ブラシ、および描画先の点を使用して、画面に文字列を描画します。
Public Sub DrawStringFloat(e As PaintEventArgs)
' Create string to draw.
Dim drawString As [String] = "Sample Text"
' Create font and brush.
Dim drawFont As New Font("Arial", 16)
Dim drawBrush As New SolidBrush(Color.Black)
' Create point for upper-left corner of drawing.
Dim x As Single = 150F
Dim y As Single = 150F
' Draw string to screen.
e.Graphics.DrawString(drawString, drawFont, drawBrush, x, y)
End Sub
[C#]
public void DrawStringFloat(PaintEventArgs e)
{
// Create string to draw.
String drawString = "Sample Text";
// Create font and brush.
Font drawFont = new Font("Arial", 16);
SolidBrush drawBrush = new SolidBrush(Color.Black);
// Create point for upper-left corner of drawing.
float x = 150.0F;
float y = 150.0F;
// Draw string to screen.
e.Graphics.DrawString(drawString, drawFont, drawBrush, x, y);
}
[C++, JScript] C++ および JScript のサンプルはありません。Visual Basic および C# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
参照
Graphics クラス | Graphics メンバ | System.Drawing 名前空間 | Graphics.DrawString オーバーロードの一覧