alexa
menu

WinUI

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download

    Show / Hide Table of Contents

    Class MdListFormat

    Represents list format for a line in Markdown.

    Inheritance
    System.Object
    MdEntity
    MdListFormat
    Inherited Members
    MdEntity.Clone()
    MdEntity.Document
    MdEntity.m_document
    MdEntity.Owner
    Namespace: Syncfusion.Office.Markdown
    Assembly: Syncfusion.Markdown.dll
    Syntax
    public class MdListFormat : MdEntity

    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

    Methods

    CloneImpl()

    Creates a duplicate copy of the MdListFormat.

    Declaration
    protected override object CloneImpl()
    Returns
    Type Description
    System.Object

    The reference to the newly created MdListFormat instance.

    Overrides
    MdEntity.CloneImpl()
    Back to top Generated by DocFX
    Copyright © 2001 - 2026 Syncfusion Inc. All Rights Reserved