Class ListAdv
Represents the ListAdv class.
Namespace: Syncfusion.Windows.Controls.RichTextBoxAdv
Assembly: Syncfusion.SfRichTextBoxAdv.WPF.dll
Syntax
public class ListAdv : BaseNodeConstructors
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 AbstractListIdPropertyField Value
| Type | Description | 
|---|---|
| System.Windows.DependencyProperty | The identifier for the AbstractListId dependency property. | 
AbstractListProperty
Identifies the AbstractList dependency property.
Declaration
public static readonly DependencyProperty AbstractListPropertyField Value
| Type | Description | 
|---|---|
| System.Windows.DependencyProperty | The identifier for the AbstractList dependency property. | 
ListIdProperty
Identifies the ListId dependency property.
Declaration
public static readonly DependencyProperty ListIdPropertyField 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
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 = 6LevelOverrides
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 = 3See Also
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 = 6Methods
Dispose()
Releases all resources used by the ListAdv instance.
Declaration
public void Dispose()