This example inserts a Figure caption, which has a colon (:) between the chapter number and the sequence number.
With CaptionLabels("Figure")
.Separator = wdSeparatorColon
.IncludeChapterNumber = True
End With
Selection.InsertCaption "Figure"
This example changes the footnote separator to a single border indented 3 inches from the right margin.
With ActiveDocument.Footnotes.Separator
.Delete
.Borders(wdBorderTop).LineStyle = wdLineStyleSingle
.ParagraphFormat.RightIndent = InchesToPoints(3)
End With
This example inserts a table of authorities at the beginning of the active document, and then it formats the table to include a sequence number and a page number, separated by a hyphen (-).
Set myRange = ActiveDocument.Range(0, 0)
With ActiveDocument.TablesOfAuthorities.Add(Range:=myRange)
.IncludeSequenceName = "Chapter"
.Separator = "-"
End With