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{
9 public class UpdatedEventArgs : EventArgs
10 {
11 private readonly Layout2DDocument doc;
12 private readonly ILayoutElement element;
13
20 : base()
21 {
22 this.doc = Document;
23 this.element = Element;
24 }
25
29 public Layout2DDocument Document => this.doc;
30
34 public ILayoutElement Element => this.element;
35 }
36}
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.