Page 1 of 1

TDocxReadWriteVcl

Posted: Wed Feb 10, 2021 8:18 am
by Priscilla
Buenos días,

Necesito unificar varios archivo .DOCX aleatorio en un sólo archivo .DOCX. ¿Cual método o propriedad del FDOCX puedo utilizar?

Un saludo,
Priscilla Vianna

Re: TDocxReadWriteVcl

Posted: Wed Feb 10, 2021 10:54 am
by larsa
Hello

Please write questions in English.

Re: TDocxReadWriteVcl

Posted: Thu Feb 11, 2021 10:17 am
by Priscilla
I need to unify several random .DOCX files into one single .DOCX file. What method or property of FDOCX can I use?

Re: TDocxReadWriteVcl

Posted: Thu Feb 11, 2021 10:29 am
by larsa
Hello

Use Append method. Example:

Code: Select all

  var
  D1,D2,D3: TDOCXReadWrite;
begin
  D1.Editor.Append(D2.Editor);
  D1.Editor.Append(D3.Editor);