コード例 #1
0
ファイル: GDI32.cs プロジェクト: Reve/ORTS-MG
 private static extern bool GetCharABCWidthsFloatNative(IntPtr hdc, uint firstChar, uint lastChar, out NativeStructs.AbcFloatWidth abcFloatWidths);
コード例 #2
0
ファイル: GDI32.cs プロジェクト: Reve/ORTS-MG
 public static bool GetCharABCWidthsFloat(IntPtr hdc, uint firstChar, uint lastChar, out NativeStructs.AbcFloatWidth abcFloatWidths)
 {
     return(GetCharABCWidthsFloatNative(hdc, firstChar, lastChar, out abcFloatWidths));
 }