Class ReportSection
Inheritance
object
ReportSection
Namespace: AeLa.EasyFeedback
Assembly: cs.temp.dll.dll
Syntax
public class ReportSection
Constructors
ReportSection(string, int)
Creates a new report section with the specified title and sort order
Declaration
public ReportSection(string title, int sortOrder = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| string | title | |
| int | sortOrder |
ReportSection(string, string)
Creates a new report section with the specified title and text
Declaration
public ReportSection(string title, string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | title | |
| string | text |
Fields
SortOrder
The order of this element in the report (lowest first)
Declaration
public int SortOrder
Field Value
| Type | Description |
|---|---|
| int |
Title
The title of this section
Declaration
public string Title
Field Value
| Type | Description |
|---|---|
| string |
Methods
Append(string)
Appends text to the section text
Declaration
public void Append(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text |
AppendLine(string)
Appends a line to the section text
Declaration
public void AppendLine(string line)
Parameters
| Type | Name | Description |
|---|---|---|
| string | line |
SetText(string)
Replaces the existing section text with specified text
Declaration
public void SetText(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text |
ToString()
Returns the section in markdown formatting for Trello
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string |
Overrides
object.ToString()