Compartir a través de


ListLevel.StartAt Property

Word Developer Reference

Returns or sets the starting number for the specified ListLevel object. Read/write Long.

Syntax

expression.StartAt

expression   An expression that returns a ListLevel object.

Example

This example sets the number style and starting number for the third outline-numbered list template. Because the style uses uppercase letters and the starting number is 4, the first letter is D.

Visual Basic for Applications
  Set mylev = ListGalleries(wdOutlineNumberGallery) _
    .ListTemplates(3).ListLevels(1)
With mylev
    .NumberStyle = wdListNumberStyleUppercaseLetter
    .StartAt = 4
End With

See Also