Table of Contents

Interface IGPoint

Namespace
NMF.Glsp.Notation
Assembly
NMF.Glsp.dll

The public interface for GPoint

[DefaultImplementationType(typeof(GPoint))]
[XmlDefaultImplementationType(typeof(GPoint))]
[ModelRepresentationClass("http://www.eclipse.org/glsp/notation#//GPoint")]
public interface IGPoint : IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
Inherited Members

Properties

X

The x property

[XmlElementName("x")]
[XmlAttribute(true)]
double X { get; set; }

Property Value

double

Y

The y property

[XmlElementName("y")]
[XmlAttribute(true)]
double Y { get; set; }

Property Value

double

Events

XChanged

Gets fired when the X property changed its value

event EventHandler<ValueChangedEventArgs> XChanged

Event Type

EventHandler<ValueChangedEventArgs>

XChanging

Gets fired before the X property changes its value

event EventHandler<ValueChangedEventArgs> XChanging

Event Type

EventHandler<ValueChangedEventArgs>

YChanged

Gets fired when the Y property changed its value

event EventHandler<ValueChangedEventArgs> YChanged

Event Type

EventHandler<ValueChangedEventArgs>

YChanging

Gets fired before the Y property changes its value

event EventHandler<ValueChangedEventArgs> YChanging

Event Type

EventHandler<ValueChangedEventArgs>