Implemented interface members:
property
Count
System.Collections.Generic.ICollection<T>.Count
property
Count
System.Collections.ICollection.Count
9 references to Count
PresentationCore (8)
Core\CSharp\System\Windows\Media\Generated\PathFigureCollection.cs (1)
519for (int i=0; i<this.Count; i++)
Core\CSharp\System\Windows\Media\GeometryGroup.cs (1)
93int count = pathFigures.Count;
Core\CSharp\System\Windows\Media\PathFigure.cs (1)
90int count = flattenedGeometry.Figures.Count;
Core\CSharp\System\Windows\Media\PathGeometry.cs (5)
377int count = figures != null ? figures.Count : 0; 416for (int i = 0; i < figureCollection.Count; ++i) 953return (figures == null) || (figures.Count <= 0); 965int count = (figures != null) ? figures.Count : 0; 1043int figureCount = figures == null ? 0 : figures.Count;
PresentationFramework (1)
src\Framework\System\Windows\Documents\FixedSOMPageConstructor.cs (1)
955if ((pathFigures != null) && (pathFigures.Count > 1))