Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

This class is used to manipulate settings for a particular indent level. Things such as number and bullet text and indent change with each indent level in Word.

Signature
C#C#
Wiki Markup
{description}
{excerpt}This class is used to manipulate settings for a particular indent level. Things such as number and bullet text and indent change with each indent level in Word.{excerpt}
{signature:C#}
 public sealed class ListLevel
Signature
{signature}{signature:vb.net
vb.net
}
Public NotInheritable Class ListLevel
Remarks

You cannot create a new ListLevel object using the new keyword. To get an instance of the ListLevel class, use the GetLevel() method of the List class, passing it the index of the level you want to retrieve.

To get an existing list entry, use the getEntry() method of the List class. getEntry accepts a parameter that represents the index of the entry to retrieve.

The following sample demonstrates how to get a ListLevel object for level 2 of a list.

{signature}
{remarks}You cannot create a new [ListLevel|ListLevel] object using the {{new}} keyword. To get an instance of the {{ListLevel}} class, use the [GetLevel()|List.GetLevel(Int32)] method of the [List|List] class, passing it the index of the level you want to retrieve.

To get an existing list entry, use the {{getEntry()}} method of the {{List}} class. {{getEntry}} accepts a parameter that represents the index of the entry to retrieve.

The following sample demonstrates how to get a {{ListLevel}} object for level 2 of a list.

{remarks}
{example}{code:csharp|title=C#}

          //--- Get the second level settings of a list
          WordApplication app = new WordApplication();
          Document doc = app.Open(@"C:\sample.doc");
          List lst = doc.Lists[0];
          ListEntry entry = lst.GetLevel(2);
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get the second level settings of a list
          Dim app As New WordApplication()
          Dim doc As Document = app.Open("C:\sample.doc")
          Dim lst As List = doc.Lists(0)
          Dim level As ListLevel = lst.GetLevel(2)
        
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle
Properties

...

Name

...

Description

...

BulletText

...

{code}

{example}
{properties}
||Name||Description||
|[BulletText|ListLevel.BulletText]|{excerpt-include:ListLevel.BulletText

...

Indent

|nopanel=true}|
|[Indent|ListLevel.Indent]|{excerpt-include

...

:ListLevel.Indent

...

NumberFormat

|nopanel=true}|
|[NumberFormat|ListLevel.NumberFormat]|{excerpt-include

...

:ListLevel.NumberFormat

...

NumberIndent

|nopanel=true}|
|[NumberIndent|ListLevel.NumberIndent]|{excerpt-include

...

:ListLevel.NumberIndent

...

|nopanel=true}|