Desktop Functions: Smart Device Functions:
|
Search Results for "POINTFX" in [All]Structures1: GLYPHMETRICS
[MarshalAs(UnmanagedType.Struct)] public POINTFX gmptGlyphOrigin; 2: POINT
3: POINTFX
public POINTFX pfxStart; gdi32
[MarshalAs(UnmanagedType.Struct)] public POINTFX pfxStart;
public struct POINTFX
int pointFxSize = Marshal.SizeOf(typeof(POINTFX));
POINTFX[] curvePoints = new POINTFX[curveHeader.cpfx];
curvePoints[i] = (POINTFX)Marshal.PtrToStructure(new IntPtr(buffer.ToInt32()+index), typeof(POINTFX));
index+=pointFxSize;
POINTFX pfxB = curvePoints[i];
POINTFX pfxC = curvePoints[i+1]; |