Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than gdi32, prefix the name with the module name and a period.
GetCharacterPlacement (gdi32)
.
C# Signature:
[DllImport("gdi32.dll", EntryPoint="GetCharacterPlacementW")]
static extern uint GetCharacterPlacementW(IntPtr hdc, [MarshalAs(UnmanagedType.LPWStr)] string lpString,
int nCount, int nMaxExtent, ref GCP_RESULTS lpResults, uint dwFlags);
User-Defined Types:
[StructLayout(LayoutKind.Sequential)]
public struct GCP_RESULTS
{
public int StructSize;
[MarshalAs(UnmanagedType.LPTStr)]
public string OutString;
public IntPtr Order;
public IntPtr Dx;
public IntPtr CaretPos;
public IntPtr Class;
public IntPtr Glyphs;
public int GlyphCount;
public int MaxFit;
public uint lStructSize;
public IntPtr lpOutString;
public IntPtr lpOrder;
public IntPtr lpDx;
public IntPtr lpCaretPos;
public char* lpClass;
public IntPtr lpGlyphs;
public uint nGlyphs;
public int nMaxFit;
}
public int GetCaretPostion(string str, int index)
{
IntPtr OldFont = SelectObject(this.DC, this.Font);
Please add some!
int len = str.Length;
int[] order = new int[len];
int[] dx = new int[len];
int[] caret = new int[len];
byte[] clss = new byte[len];
short[] glys = new short[len];
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).