Show / Hide Table of Contents

Class ReportSection

Inheritance
Object
ReportSection
Namespace: AeLa.EasyFeedback
Assembly: cs.temp.dll.dll
Syntax
public class ReportSection

Constructors

ReportSection(String, Int32)

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
Int32 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
Int32

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()
Back to top Generated by DocFX