void DrawText( const char* szText, int x=0, int y=0, int size=12, D3DCOLOR color=D3DCOLOR_BLACK ) void DrawText( const char* szText, int x, int y, HFONT hFont, D3DCOLOR color=D3DCOLOR_BLACK ) void DrawText( int x, int y, int size, D3DCOLOR color, const char* szText, ... ) void DrawText( int x, int y, HFONT hFont, D3DCOLOR color, const char* szText, ... )
テキスト描画を行います。
szText - 描画するテキスト文字列(改行コードもサポートされる)
x - 絵画開始位置X座標。省略時0
y - 絵画開始位置Y座標。省略時0
size - 文字のサイズ。省略時12
color - 文字色。省略時黒
hFont - FONTのハンドル
なし
特になし。
>戻る