Copy/import doc variables from Properties Summary

  • Thread starter Thread starter MaryM
  • Start date Start date
M

MaryM

Is there a way to copy or import "document variables"
entered at File|Properties>Summary tab from one document
to another?
 
Doc1.BuiltinDocumentProperties("Title") =
Doc2.BuiltinDocumentProperties("Title")

etc

CustomDocumentProperties are trickier. Simplest is to iterate the
collection, *delete* the property from Doc2, ignoring the error if it
doesn't exist, then add it.
 
Back
Top