Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
UpdatedEventArgs.cs
1using System;
3
5{
11 public delegate void UpdatedEventHandler(object Sender, UpdatedEventArgs e);
12
16 public class UpdatedEventArgs : EventArgs
17 {
18 private readonly Layout2DDocument doc;
19 private readonly ILayoutElement element;
20
27 : base()
28 {
29 this.doc = Document;
30 this.element = Element;
31 }
32
36 public Layout2DDocument Document => this.doc;
37
41 public ILayoutElement Element => this.element;
42 }
43}
Event raised when the layout model has been updated internally.
Layout2DDocument Document
Document that has been updated.
UpdatedEventArgs(Layout2DDocument Document, ILayoutElement Element)
Event raised when the layout model has been updated internally.
ILayoutElement Element
Layout element that has been updated.
Contains a 2D layout document.
Base interface for all layout elements.
delegate void UpdatedEventHandler(object Sender, UpdatedEventArgs e)
Delegate for Updated event handlers.