Document.CountNumberedItems(Object, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the number of bulleted or numbered items and LISTNUM fields in the document.
public int CountNumberedItems (ref object NumberType, ref object Level);
abstract member CountNumberedItems : obj * obj -> int
Public Function CountNumberedItems (Optional ByRef NumberType As Object, Optional ByRef Level As Object) As Integer
Parameters
- NumberType
- Object
The type of numbers to be counted. Can be one of the following WdNumberType values: wdNumberParagraph, wdNumberListNum, or wdNumberAllNumbers. The default value is wdNumberAllNumbers.
- Level
- Object
A number that corresponds to the numbering level you want to count. The default is that all levels are counted.
Returns
The number of bulleted or numbered items and LISTNUM fields in the document.
Remarks
Bulleted items are counted when either wdNumberParagraph or wdNumberAllNumbers (the default) is specified for NumberType
.
There are two types of numbers: preset numbers (wdNumberParagraph), which you can add to paragraphs by selecting a template in the Bullets and Numbering dialog box; and LISTNUM fields (wdNumberListNum), which enable you to add more than one number per paragraph.
Optional Parameters
For information on optional parameters, see Optional Parameters in Office Solutions.