Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.Windows.Media.PathFigure.cs « PresentationCore « FPF « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2fa79a9940daae5dc090b647a3450f4f3335b808 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace System.Windows.Media
{
	public  class PathFigure  : System.Windows.Media.Animation.Animatable
	{		public PathFigure(){}
		public PathFigure(System.Windows.Point param0, System.Collections.Generic.IEnumerable<System.Windows.Media.PathSegment> param1, System.Boolean param2){}



		public System.Boolean IsClosed { set {  throw new System.NotImplementedException(); } }
		public System.Windows.Point StartPoint { set {  throw new System.NotImplementedException(); } }
		public System.Windows.Media.PathSegmentCollection Segments { get {  throw new System.NotImplementedException(); } }

	}
}