Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
True.cs
2{
6 public class True : LayoutContainer
7 {
13 public True(Layout2DDocument Document, ILayoutElement Parent)
14 : base(Document, Parent)
15 {
16 }
17
21 public override string LocalName => "True";
22
29 public override ILayoutElement Create(Layout2DDocument Document, ILayoutElement Parent)
30 {
31 return new True(Document, Parent);
32 }
33 }
34}
Contains a 2D layout document.
Layout to show, if true.
Definition: True.cs:7
True(Layout2DDocument Document, ILayoutElement Parent)
Layout to show, if true.
Definition: True.cs:13
override string LocalName
Local name of type of element.
Definition: True.cs:21
override ILayoutElement Create(Layout2DDocument Document, ILayoutElement Parent)
Creates a new instance of the layout element.
Definition: True.cs:29
Abstract base class for layout containers (area elements containing embedded layout elements).
Base interface for all layout elements.