IncludeSequenceName Property
Returns or sets the Sequence (SEQ) field identifier for a table of authorities. Corresponds to the \s switch for a Table of Authorities (TOA) field. Read/write String.
expression.IncludeSequenceName
expression Required. An expression that returns a TableOfAuthorities object.
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").
Dim rngTemp As Range
Dim toaTemp As TableOfAuthorities
Set rngTemp = ActiveDocument.Range(Start:=0, End:=0)
Set toaTemp = _
ActiveDocument.TablesOfAuthorities.Add(Range:=rngTemp)
toaTemp.IncludeSequenceName = "Chapter"
This example returns the sequence name for the first table of authorities.
Dim strSequence As String
strSequence = _
ActiveDocument.TablesOfAuthorities(1).IncludeSequenceName
Applies to | TableOfAuthorities Object
See Also | Add Method | IncludeCategoryHeader Property