2 writes to v
PresentationFramework (2)
MS\Internal\PtsHost\Pts.cs (1)
933
internal FSPOINT(int inU, int inV) { u = inU;
v
= inV; }
MS\Internal\Text\TextDpi.cs (1)
76
fspoint.
v
= ToTextDpi(point.Y);
12 references to v
PresentationFramework (12)
MS\Internal\PtsHost\FigureParaClient.cs (1)
243
pt = new PTS.FSPOINT(pt.u - ContentRect.u, pt.
v
- ContentRect.v);
MS\Internal\PtsHost\FloaterParaClient.cs (1)
247
pt = new PTS.FSPOINT(pt.u - ContentRect.u, pt.
v
- ContentRect.v);
MS\Internal\PtsHost\Pts.cs (5)
921
return (point.u >= u && point.u <= u + du && point.
v
>= v && point.
v
<= v + dv);
938
public static bool operator == (FSPOINT point1, FSPOINT point2) { return point1.u == point2.u && point1.
v
== point2.
v
; }
952
return u.GetHashCode() ^
v
.GetHashCode();
MS\Internal\PtsHost\SubpageParaClient.cs (1)
175
pt = new PTS.FSPOINT(pt.u - ContentRect.u, pt.
v
- ContentRect.v);
MS\Internal\PtsHost\TableParaClient.cs (2)
381
if (pt.
v
>= vrRowTop && pt.
v
<= (vrRowTop + arrayTableRowDesc[iR].u.dvrRow))
MS\Internal\PtsHost\TextParaClient.cs (2)
3803
if (lineDesc.vrStart + lineDesc.dvrAscent + lineDesc.dvrDescent > pt.
v
)
3984
if (lineDesc.vrStart + lineDesc.dvrAscent + lineDesc.dvrDescent > pt.
v
)