Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ReportSectionCreated.cs
1
using
System;
2
using
System.Xml;
3
4
namespace
Waher.Client.WPF.Controls.Report
5
{
9
public
class
ReportSectionCreated
:
ReportElement
10
{
11
private
readonly
string
header;
12
17
public
ReportSectionCreated
(
string
Header
)
18
{
19
this.header =
Header
;
20
}
21
26
public
ReportSectionCreated
(XmlElement Xml)
27
{
28
this.header = Xml.InnerText;
29
}
30
34
public
string
Header
=> this.header;
35
40
public
override
void
ExportXml
(XmlWriter Output)
41
{
42
Output.WriteElementString(
"SectionStart"
, this.header);
43
}
44
}
45
}
Waher.Client.WPF.Controls.Report.ReportElement
Abstract base class for report elements.
Definition:
ReportElement.cs:10
Waher.Client.WPF.Controls.Report.ReportSectionCreated
Creation of a section.
Definition:
ReportSectionCreated.cs:10
Waher.Client.WPF.Controls.Report.ReportSectionCreated.Header
string Header
Section header
Definition:
ReportSectionCreated.cs:34
Waher.Client.WPF.Controls.Report.ReportSectionCreated.ExportXml
override void ExportXml(XmlWriter Output)
Exports element to XML
Definition:
ReportSectionCreated.cs:40
Waher.Client.WPF.Controls.Report.ReportSectionCreated.ReportSectionCreated
ReportSectionCreated(string Header)
Creation of a section.
Definition:
ReportSectionCreated.cs:17
Waher.Client.WPF.Controls.Report.ReportSectionCreated.ReportSectionCreated
ReportSectionCreated(XmlElement Xml)
Creation of a section.
Definition:
ReportSectionCreated.cs:26
Waher.Client.WPF.Controls.Report
Definition:
ReportElement.cs:5
IoTGateway
Clients
Waher.Client.WPF
Controls
Report
ReportSectionCreated.cs
Generated by
1.9.5