menu

WPF

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class ListAdv - WPF API Reference | Syncfusion

    Show / Hide Table of Contents

    Class ListAdv

    Represents the ListAdv class.

    Inheritance
    System.Object
    BaseNode
    ListAdv
    Namespace: Syncfusion.Windows.Controls.RichTextBoxAdv
    Assembly: Syncfusion.SfRichTextBoxAdv.WPF.dll
    Syntax
    public class ListAdv : BaseNode

    Constructors

    ListAdv()

    Initializes a new instance of the ListAdv class.

    Declaration
    public ListAdv()

    ListAdv(DocumentAdv)

    Initializes a new instance of the ListAdv class for the specified DocumentAdv.

    Declaration
    public ListAdv(DocumentAdv documentAdv)
    Parameters
    Type Name Description
    DocumentAdv documentAdv

    The DocumentAdv to which the ListAdv is associated.

    Fields

    AbstractListIdProperty

    Identifies the AbstractListId dependency property.

    Declaration
    public static readonly DependencyProperty AbstractListIdProperty
    Field Value
    Type Description
    System.Windows.DependencyProperty

    The identifier for the AbstractListId dependency property.

    AbstractListProperty

    Identifies the AbstractList dependency property.

    Declaration
    public static readonly DependencyProperty AbstractListProperty
    Field Value
    Type Description
    System.Windows.DependencyProperty

    The identifier for the AbstractList dependency property.

    ListIdProperty

    Identifies the ListId dependency property.

    Declaration
    public static readonly DependencyProperty ListIdProperty
    Field Value
    Type Description
    System.Windows.DependencyProperty

    The identifier for the ListId dependency property.

    Properties

    AbstractList

    Gets or sets the abstract list for the ListAdv.

    Declaration
    public AbstractListAdv AbstractList { get; set; }
    Property Value
    Type Description
    AbstractListAdv

    The AbstractListAdv associated with the ListAdv.

    See Also
    AbstractListAdv

    AbstractListId

    Gets or sets the identified of the AbstractListAdv.

    Declaration
    public int AbstractListId { get; set; }
    Property Value
    Type Description
    System.Int32

    The Id that uniquely identifies the associated AbstractListAdv in the DocumentAdv.

    Examples

    The following sample code demonstrates how to define a list.

    <RichTextBoxAdv:ListAdv ListId="4" AbstractListId="6" />
    ListAdv listAdv = new ListAdv();
    listAdv.ListId = 4;
    listAdv.AbstractListId = 6;
    Dim listAdv As New ListAdv()
    listAdv.ListId = 4
    listAdv.AbstractListId = 6

    LevelOverrides

    Gets or sets the LevelOverrideAdvCollection of the ListAdv.

    Declaration
    public LevelOverrideAdvCollection LevelOverrides { get; }
    Property Value
    Type Description
    LevelOverrideAdvCollection

    The LevelOverrideAdvCollection of the ListAdv.

    Examples

    The following sample code demonstrates how to define a list.

    <RichTextBoxAdv:ListAdv ListId="4" AbstractListId="6">
        <RichTextBoxAdv:ListAdv.LevelOverrides>
            <RichTextBoxAdv:LevelOverrideAdv LevelNumber="0" StartAt="3" />
        </RichTextBoxAdv:ListAdv.LevelOverrides>
    </RichTextBoxAdv:ListAdv>
    ListAdv listAdv = new ListAdv();
    listAdv.ListId = 4;
    listAdv.AbstractListId = 6;
    

    LevelOverrideAdv levelOverrideAdv = new LevelOverrideAdv(); levelOverrideAdv.LevelNumber = 0; levelOverrideAdv.StartAt = 3;

    Dim listAdv As New ListAdv()
    listAdv.ListId = 4
    listAdv.AbstractListId = 6
    
    Dim levelOverrideAdv As New LevelOverrideAdv()
    levelOverrideAdv.LevelNumber = 0
    levelOverrideAdv.StartAt = 3
    See Also
    LevelOverrideAdv

    ListId

    Gets or sets the identifier of the ListAdv.

    Declaration
    public int ListId { get; set; }
    Property Value
    Type Description
    System.Int32

    The Id that uniquely identifies the ListAdv in the DocumentAdv.

    Examples

    The following sample code demonstrates how to define a list.

    <RichTextBoxAdv:ListAdv ListId="4" AbstractListId="6" />
    ListAdv listAdv = new ListAdv();
    listAdv.ListId = 4;
    listAdv.AbstractListId = 6;
    Dim listAdv As New ListAdv()
    listAdv.ListId = 4
    listAdv.AbstractListId = 6

    Methods

    Dispose()

    Releases all resources used by the ListAdv instance.

    Declaration
    public void Dispose()
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved