Paragraph.SelectNumber (Word)
Selects the number or bullet in a list.
If the SelectNumber method is called from a paragraph, selection, or range that does not contain a list, an error message is displayed.
Sub SelectParaNumber()
With Selection
.Paragraphs(1).SelectNumber
.Font.Size = 17
End With
End Sub