Nein, das steuert offenbar die Mailmerge Funktion von Word an.
Ich glaube wirklich, dass die Ansteuerung von Textmarken das allereinfachste ist, um mit Hilfe von Word Texte automatisch zu produzieren:
Delphi-Quellcode:
procedure PrintStringAtBookmark (bookmark, text: string);
var oleparam: olevariant;
begin
oleparam := bookmark;
WordDoc.Bookmarks.item(oleparam).select;
WordApp.Selection.TypeText (text);
end;
Je nach Bedarf noch ein
Exception handling einbauen, wenn es das Bookmark nicht gibt