Implemented interface members:
42 references to Count
PresentationCore (24)
MS\Internal\Media\XamlSerializationHelper.cs (2)
263writer.Write( ( uint ) points.Count ) ; 266for ( int i = 0; i < points.Count ; i ++ )
MS\Internal\Media3D\GeneralTransform2DTo3DTo2D.cs (2)
292int texCoordCount = textureCoords.Count; 333int texCoordLimit = textureCoords.Count;
System\Windows\Media\Generated\PolyBezierSegmentFigureLogic.cs (4)
74if (points != null && points.Count >= 3) 84int count = points.Count; 95current = points.Internal_GetItem(points.Count - 1); 102return (Points == null) || (Points.Count < 3);
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (4)
74if (points != null && points.Count >= 1) 84int count = points.Count; 95current = points.Internal_GetItem(points.Count - 1); 102return (Points == null) || (Points.Count < 1);
System\Windows\Media\Generated\PolyQuadraticBezierSegmentFigureLogic.cs (4)
74if (points != null && points.Count >= 2) 84int count = points.Count; 95current = points.Internal_GetItem(points.Count - 1); 102return (Points == null) || (Points.Count < 2);
System\Windows\Media\PathStreamGeometryContext.cs (1)
358int count = _currentSegmentPoints.Count;
System\Windows\Media3D\Generated\MeshGeometry3D.cs (1)
221int TextureCoordinatesCount = (vTextureCoordinates == null) ? 0 : vTextureCoordinates.Count;
System\Windows\Media3D\MeshGeometry3D.cs (1)
117int count = (tx == null) ? 0 : tx.Count;
System\Windows\Media3D\Viewport2DVisual3D.cs (5)
54int texCoordCount = textureCoords.Count; 89int texCoordLimit = textureCoords.Count; 193index1 < textureCoordinates.Count && 194index2 < textureCoordinates.Count && 195index3 < textureCoordinates.Count)
PresentationFramework (10)
System\Windows\Documents\FixedSOMPageConstructor.cs (2)
984lastPoint = points[points.Count - 1]; 998lastPoint = points[points.Count - 1];
System\Windows\Shapes\Polygon.cs (4)
121if (pointCollection.Count > 0) 125if (pointCollection.Count > 1) 127Point[] array = new Point[pointCollection.Count - 1]; 129for (int i = 1; i < pointCollection.Count; i++)
System\Windows\Shapes\Polyline.cs (4)
121if (pointCollection.Count > 0) 125if (pointCollection.Count > 1) 127Point[] array = new Point[pointCollection.Count - 1]; 129for (int i = 1; i < pointCollection.Count; i++)
ReachFramework (8)
AlphaFlattener\Utility.cs (4)
540if ((pseg == null) || (pseg.Points == null) || (pseg.Points.Count != 3)) 939size = seg.Points.Count; 945size = (seg.Points.Count + 1) / 2 * 3; 951size = (seg.Points.Count + 2) / 3 * 3;
Serialization\VisualSerializer.cs (4)
167return pc.Count; 1040pc += pl.Points.Count; 1048pc += l.Points.Count; 1120pc += b.Points.Count;