DrawText

    DrawText - 화면에 Text문자열 출력

    DrawText는 화면상에 지정한 Text 내용을 출력합니다. Declare Function DrawText Lib "user32" Alias "DrawTextA" (ByVal hdc As Integer, ByVal lpStr As String, ByVal nCount As Integer, ByRef lpRect As RECT, ByVal wFormat As Integer) As Integer - VB.NET 선언 [DllImport("user32")] public static extern int DrawText(int hdc, string lpStr, int nCount, ref RECT lpRect, int wFormat); - C# 선언 DrawText함수의 첫번째 인수는 문자열을 표시할 장치의 H..