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

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Editor/FPF/PresentationCore/System.Windows.Media.Geometry.cs')
-rw-r--r--src/Editor/FPF/PresentationCore/System.Windows.Media.Geometry.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Editor/FPF/PresentationCore/System.Windows.Media.Geometry.cs b/src/Editor/FPF/PresentationCore/System.Windows.Media.Geometry.cs
new file mode 100644
index 0000000..0cd52b8
--- /dev/null
+++ b/src/Editor/FPF/PresentationCore/System.Windows.Media.Geometry.cs
@@ -0,0 +1,17 @@
+namespace System.Windows.Media
+{
+ public abstract class Geometry : System.Windows.Media.Animation.Animatable
+ { public abstract System.Boolean IsEmpty();
+
+
+ public static System.Windows.Media.Geometry Parse(System.String param0) { throw new System.NotImplementedException(); }
+ public System.Windows.Media.IntersectionDetail FillContainsWithDetail(System.Windows.Media.Geometry param0) { throw new System.NotImplementedException(); }
+ public System.Windows.Media.PathGeometry GetOutlinedPathGeometry() { throw new System.NotImplementedException(); }
+
+
+ public System.Windows.Media.Transform Transform { get { throw new System.NotImplementedException(); } set { throw new System.NotImplementedException(); } }
+ public static System.Windows.Media.Geometry Empty { get; } = new GeometryGroup();
+ public virtual System.Windows.Rect Bounds { get { throw new System.NotImplementedException(); } }
+
+ }
+} \ No newline at end of file