Interface IGDimension
The public interface for GDimension
[DefaultImplementationType(typeof(GDimension))]
[XmlDefaultImplementationType(typeof(GDimension))]
[ModelRepresentationClass("http://www.eclipse.org/glsp/notation#//GDimension")]
public interface IGDimension : IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
- Inherited Members
Properties
Height
The height property
[XmlElementName("height")]
[XmlAttribute(true)]
double Height { get; set; }
Property Value
Width
The width property
[XmlElementName("width")]
[XmlAttribute(true)]
double Width { get; set; }
Property Value
Events
HeightChanged
Gets fired when the Height property changed its value
event EventHandler<ValueChangedEventArgs> HeightChanged
Event Type
HeightChanging
Gets fired before the Height property changes its value
event EventHandler<ValueChangedEventArgs> HeightChanging
Event Type
WidthChanged
Gets fired when the Width property changed its value
event EventHandler<ValueChangedEventArgs> WidthChanged
Event Type
WidthChanging
Gets fired before the Width property changes its value
event EventHandler<ValueChangedEventArgs> WidthChanging