Class MdListFormat
Represents list format for a line in Markdown.
Inheritance
System.Object
MdListFormat
Namespace: Syncfusion.Office.Markdown
Assembly: Syncfusion.Markdown.dll
Syntax
public class MdListFormat : Object
Constructors
MdListFormat()
Declaration
public MdListFormat()
Properties
BulletedListMarker
Gets a value used for bulleted list marker in Markdown.
Declaration
public string BulletedListMarker { get; }
Property Value
Type |
---|
System.String |
IsNumbered
Gets or sets a value indicating whether line is numbered. Default it is false.
Declaration
public bool IsNumbered { get; set; }
Property Value
Type |
---|
System.Boolean |
ListLevel
Gets or sets a value used for representing the list level in Markdown
Declaration
public int ListLevel { get; set; }
Property Value
Type |
---|
System.Int32 |
Remarks
List level must be less than equal to 8 and greater then equal to 0(0-8)
ListValue
Gets or sets a value used for representing the list including the nested list in Markdown
Declaration
public string ListValue { get; set; }
Property Value
Type |
---|
System.String |
NumberedListMarker
Gets a value used for Numbered List Marker in Markdown
Declaration
public string NumberedListMarker { get; set; }
Property Value
Type |
---|
System.String |