Search notes:

Office Object Model: Word - Templates

Iteration

Iterate over all available templates and print their name and path:
option explicit

sub main() ' {

    dim t as template
    for each t in templates
        debug.print t.name & " (" & t.path & ")"
    next t

end sub ' }
Github repository about-MS-Office-object-model, path: /Word/Templates/iterate.bas

See also

Normal.dotm is the default Word template that is automatically opened when Word is started.
Word Object Model

Index