Desktop Functions: Smart Device Functions:
|
Search Results for "GetTextExtentPoint" in [All]gdi32
static extern bool GetTextExtentPoint32(IntPtr hdc, string lpString,
static extern bool GetTextExtentPoint32(IntPtr hdc, string lpString, int cbString, out SIZE lpSize);
GDI.GetTextExtentPoint32(hdc, text, text.Length,out sz);
static extern bool GetTextExtentPoint32(IntPtr hdc, string lpString, static extern bool GetTextExtentPoint32(IntPtr hdc, string lpString,
GDI.GetTextExtentPoint32(hdc, text, text.Length,out sz); 3: TextOut
static extern bool GetTextExtentPoint(IntPtr hdc, string lpString,
//Do the GetHdc(), GetTextExtentPoint, etc, here. Remember that you have
GetTextExtentPoint(HDC, line, line.Length, ref MeasureSize); coredllSetting lpnFit and alpDx to null will get you the functionality of GetTextExtentPoint. |