9 references to POINTS
System.Private.Windows.Core (1)
Windows\Win32\Foundation\POINTS.cs (1)
10public static implicit operator Point(POINTS point) => new(point.x, point.y);
System.Windows.Forms.Primitives.TestUtilities (8)
Metafiles\RecordTypes\EMRPOLY16.cs (3)
29private POINTS _apts; 31public unsafe ReadOnlySpan<POINTS> points 35fixed (POINTS* p = &_apts)
Metafiles\RecordTypes\EMRPOLYPOLY16.cs (4)
67public unsafe ReadOnlySpan<POINTS> GetPointsForPoly(int index) 75POINTS* currentPoint = (POINTS*)((byte*)s + sizeof(EMRPOLYPOLY16) + (sizeof(uint) * (nPolys - 1))); 83return new ReadOnlySpan<POINTS>(currentPoint, (int)counts[current]);
Metafiles\Validators\Poly16Validator.cs (1)
37Assert.Equal(_points, poly->points.Transform<POINTS, Point>(p => p));