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