Interface IGPoint
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
Y
The y property
[XmlElementName("y")]
[XmlAttribute(true)]
double Y { get; set; }
Property Value
Events
XChanged
Gets fired when the X property changed its value
event EventHandler<ValueChangedEventArgs> XChanged
Event Type
XChanging
Gets fired before the X property changes its value
event EventHandler<ValueChangedEventArgs> XChanging
Event Type
YChanged
Gets fired when the Y property changed its value
event EventHandler<ValueChangedEventArgs> YChanged
Event Type
YChanging
Gets fired before the Y property changes its value
event EventHandler<ValueChangedEventArgs> YChanging