Class TextOutputGeneratorArgs
- Namespace
- SunamoTextOutputGenerator
- Assembly
- SunamoTextOutputGenerator.dll
Arguments for controlling TextOutputGenerator list formatting behavior.
public class TextOutputGeneratorArgs
- Inheritance
-
TextOutputGeneratorArgs
- Inherited Members
- Extension Methods
Constructors
TextOutputGeneratorArgs()
Initializes a new instance of the TextOutputGeneratorArgs class.
public TextOutputGeneratorArgs()
TextOutputGeneratorArgs(bool, bool)
Initializes a new instance of the TextOutputGeneratorArgs class with specified options.
public TextOutputGeneratorArgs(bool isHeaderWrappedWithEmptyLines, bool isInsertingCount)
Parameters
isHeaderWrappedWithEmptyLinesboolWhether the header should be wrapped with empty lines.
isInsertingCountboolWhether to insert the count in the header.
Properties
Delimiter
Gets or sets the delimiter between list entries.
public string Delimiter { get; set; }
Property Value
IsHeaderWrappedWithEmptyLines
Gets or sets a value indicating whether the header should be wrapped with empty lines.
public bool IsHeaderWrappedWithEmptyLines { get; set; }
Property Value
IsInsertingCount
Gets or sets a value indicating whether to insert the count in the header.
public bool IsInsertingCount { get; set; }
Property Value
WhenNoEntries
Gets or sets the text to display when there are no entries.
public string WhenNoEntries { get; set; }