IncludeSequenceName Property
Applies To
TableOfAuthorities object.
Description
Returns or sets the SEQ (Sequence) field identifier for a table of authorities. Corresponds to the \s switch for a TOA field. Read/write String.
See Also
Add method (TablesOfAuthorities collection), IncludeCategoryHeader 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