IncludeSequenceName Property Example
This example inserts a table of authorities at the beginning of the active document and then formats the table to include the Chapter sequence field number before the page number (for example, "Chapter 2-14").
Set myRange = ActiveDocument.Range(Start:=0, End:=0)
Set myToa = ActiveDocument.TablesOfAuthorities.Add(Range:=myRange)
myToa.IncludeSequenceName = "Chapter"
This example returns the sequence name for the first table of authorities.
seq = ActiveDocument.TablesOfAuthorities(1).IncludeSequenceName