15 instantiations of PathFigureCollection
PresentationCore (13)
Core\CSharp\System\Windows\Media\EllipseGeometry.cs (1)
299PathFigureCollection figureCollection = new PathFigureCollection();
Core\CSharp\System\Windows\Media\Generated\PathFigureCollection.cs (2)
494PathFigureCollection collection = new PathFigureCollection(); 611return new PathFigureCollection();
Core\CSharp\System\Windows\Media\GeometryGroup.cs (1)
83PathFigureCollection result = new PathFigureCollection();
Core\CSharp\System\Windows\Media\LineGeometry.cs (1)
250PathFigureCollection collection = new PathFigureCollection();
Core\CSharp\System\Windows\Media\PathGeometry.cs (4)
369result = new PathFigureCollection(); 375result = new PathFigureCollection(); 413figures = Figures = new PathFigureCollection(); 435_figures = new PathFigureCollection();
Core\CSharp\System\Windows\Media\PathStreamGeometryContext.cs (2)
89_figures = new PathFigureCollection(figureCount); 135_figures = new PathFigureCollection();
Core\CSharp\System\Windows\Media\RectangleGeometry.cs (2)
356PathFigureCollection collection = new PathFigureCollection(); 376PathFigureCollection collection = new PathFigureCollection();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7371bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.PathFigureCollection(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1443case KnownElements.PathFigureCollection: o = new System.Windows.Media.PathFigureCollection(); break;
71 references to PathFigureCollection
PresentationCore (66)
Core\CSharp\System\Windows\Media\CombinedGeometry.cs (1)
240internal override PathFigureCollection GetTransformedFigureCollection(Transform transform)
Core\CSharp\System\Windows\Media\Converters\Generated\PathFigureCollectionValueSerializer.cs (7)
66if (!(value is PathFigureCollection)) 71PathFigureCollection instance = (PathFigureCollection) value; 86return PathFigureCollection.Parse(value ); 100if (value is PathFigureCollection) 102PathFigureCollection instance = (PathFigureCollection) value;
Core\CSharp\System\Windows\Media\EllipseGeometry.cs (2)
285internal override PathFigureCollection GetTransformedFigureCollection(Transform transform) 299PathFigureCollection figureCollection = new PathFigureCollection();
Core\CSharp\System\Windows\Media\Generated\PathFigureCollection.cs (18)
68public new PathFigureCollection Clone() 70return (PathFigureCollection)base.Clone(); 77public new PathFigureCollection CloneCurrentValue() 79return (PathFigureCollection)base.CloneCurrentValue(); 488internal static PathFigureCollection Empty 494PathFigureCollection collection = new PathFigureCollection(); 588private static PathFigureCollection s_empty; 618PathFigureCollection sourcePathFigureCollection = (PathFigureCollection) source; 640PathFigureCollection sourcePathFigureCollection = (PathFigureCollection) source; 662PathFigureCollection sourcePathFigureCollection = (PathFigureCollection) source; 684PathFigureCollection sourcePathFigureCollection = (PathFigureCollection) source; 832public static PathFigureCollection Parse(string source) 878internal Enumerator(PathFigureCollection list) 989private PathFigureCollection _list;
Core\CSharp\System\Windows\Media\Generated\PathFigureCollectionConverter.cs (7)
84if (!(context.Instance is PathFigureCollection)) 89PathFigureCollection value = (PathFigureCollection)context.Instance; 125return PathFigureCollection.Parse(source); 147if (destinationType != null && value is PathFigureCollection) 149PathFigureCollection instance = (PathFigureCollection)value;
Core\CSharp\System\Windows\Media\Generated\PathGeometry.cs (6)
132public PathFigureCollection Figures 136return (PathFigureCollection) GetValue(FiguresProperty); 296internal static PathFigureCollection s_Figures = PathFigureCollection.Empty; 334typeof(PathFigureCollection), 336new FreezableDefaultValueFactory(PathFigureCollection.Empty),
Core\CSharp\System\Windows\Media\Geometry.cs (2)
951internal PathFigureCollection GetPathFigureCollection() 980internal abstract PathFigureCollection GetTransformedFigureCollection(Transform transform);
Core\CSharp\System\Windows\Media\GeometryGroup.cs (3)
78internal override PathFigureCollection GetTransformedFigureCollection(Transform transform) 83PathFigureCollection result = new PathFigureCollection(); 90PathFigureCollection pathFigures = children.Internal_GetItem(i).GetTransformedFigureCollection(combined);
Core\CSharp\System\Windows\Media\LineGeometry.cs (2)
222internal override PathFigureCollection GetTransformedFigureCollection(Transform transform) 250PathFigureCollection collection = new PathFigureCollection();
Core\CSharp\System\Windows\Media\Parsers.cs (1)
319internal static PathFigureCollection ParsePathFigureCollection(
Core\CSharp\System\Windows\Media\PathGeometry.cs (12)
355internal override PathFigureCollection GetTransformedFigureCollection(Transform transform) 361PathFigureCollection result; 376PathFigureCollection figures = Figures; 406PathFigureCollection figureCollection = geometry.GetPathFigureCollection(); 409PathFigureCollection figures = Figures; 441internal PathFigureCollection Figures 591internal PathFigureCollection _figures; 731PathFigureCollection figures = Figures; 952PathFigureCollection figures = Figures; 963PathFigureCollection figures = Figures; 999PathFigureCollection figures = Figures; 1041PathFigureCollection figures = Figures;
Core\CSharp\System\Windows\Media\PathStreamGeometryContext.cs (1)
472private PathFigureCollection _figures;
Core\CSharp\System\Windows\Media\RectangleGeometry.cs (3)
329internal override PathFigureCollection GetTransformedFigureCollection(Transform transform) 356PathFigureCollection collection = new PathFigureCollection(); 376PathFigureCollection collection = new PathFigureCollection();
Core\CSharp\System\Windows\Media\StreamGeometry.cs (1)
344internal override PathFigureCollection GetTransformedFigureCollection(Transform transform)
PresentationFramework (5)
src\Framework\System\Windows\Documents\FixedSOMPageConstructor.cs (2)
952PathFigureCollection pathFigures = pathGeom.Figures; 970PathFigureCollection pathFigures = pathGeom.Figures;
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
536case 444: t = () => typeof(PathFigureCollection); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7369typeof(System.Windows.Media.PathFigureCollection),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5988case KnownElements.PathFigureCollection: t = typeof(System.Windows.Media.PathFigureCollection); break;