Implemented interface members:
42 references to Count
PresentationCore (24)
MS\Internal\Media\XamlSerializationHelper.cs (2)
264
writer.Write( ( uint ) points.
Count
) ;
267
for ( int i = 0; i < points.
Count
; i ++ )
MS\Internal\Media3D\GeneralTransform2DTo3DTo2D.cs (2)
299
int texCoordCount = textureCoords.
Count
;
340
int texCoordLimit = textureCoords.
Count
;
System\Windows\Media\Generated\PolyBezierSegmentFigureLogic.cs (4)
65
if (points != null && points.
Count
>= 3)
75
int count = points.
Count
;
86
current = points.Internal_GetItem(points.
Count
- 1);
93
return (Points == null) || (Points.
Count
< 3);
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (4)
65
if (points != null && points.
Count
>= 1)
75
int count = points.
Count
;
86
current = points.Internal_GetItem(points.
Count
- 1);
93
return (Points == null) || (Points.
Count
< 1);
System\Windows\Media\Generated\PolyQuadraticBezierSegmentFigureLogic.cs (4)
65
if (points != null && points.
Count
>= 2)
75
int count = points.
Count
;
86
current = points.Internal_GetItem(points.
Count
- 1);
93
return (Points == null) || (Points.
Count
< 2);
System\Windows\Media\PathStreamGeometryContext.cs (1)
359
int count = _currentSegmentPoints.
Count
;
System\Windows\Media3D\Generated\MeshGeometry3D.cs (1)
198
int TextureCoordinatesCount = (vTextureCoordinates == null) ? 0 : vTextureCoordinates.
Count
;
System\Windows\Media3D\MeshGeometry3D.cs (1)
118
int count = (tx == null) ? 0 : tx.
Count
;
System\Windows\Media3D\Viewport2DVisual3D.cs (5)
55
int texCoordCount = textureCoords.
Count
;
90
int texCoordLimit = textureCoords.
Count
;
194
index1 < textureCoordinates.
Count
&&
195
index2 < textureCoordinates.
Count
&&
196
index3 < textureCoordinates.
Count
)
PresentationFramework (10)
System\Windows\Documents\FixedSOMPageConstructor.cs (2)
985
lastPoint = points[points.
Count
- 1];
999
lastPoint = points[points.
Count
- 1];
System\Windows\Shapes\Polygon.cs (4)
122
if (pointCollection.
Count
> 0)
126
if (pointCollection.
Count
> 1)
128
Point[] array = new Point[pointCollection.
Count
- 1];
130
for (int i = 1; i < pointCollection.
Count
; i++)
System\Windows\Shapes\Polyline.cs (4)
122
if (pointCollection.
Count
> 0)
126
if (pointCollection.
Count
> 1)
128
Point[] array = new Point[pointCollection.
Count
- 1];
130
for (int i = 1; i < pointCollection.
Count
; i++)
ReachFramework (8)
AlphaFlattener\Utility.cs (4)
541
if ((pseg == null) || (pseg.Points == null) || (pseg.Points.
Count
!= 3))
940
size = seg.Points.
Count
;
946
size = (seg.Points.
Count
+ 1) / 2 * 3;
952
size = (seg.Points.
Count
+ 2) / 3 * 3;
Serialization\VisualSerializer.cs (4)
168
return pc.
Count
;
1041
pc += pl.Points.
Count
;
1049
pc += l.Points.
Count
;
1121
pc += b.Points.
Count
;