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