Exemplo n.º 1
0
 public static extern bool GetTextExtentPoint32(HDC hdc, string stText, int cch, out SIZE size);
Exemplo n.º 2
0
 public static bool GetTextExtentPoint32(HDC hdc, string stText, out SIZE size)
 {
     return GetTextExtentPoint32(hdc, stText, stText.Length, out size);
 }