Words::Document ^doc = gcnew Words::Document;
doc->RemoveAllChildren();
Words::Section ^section = gcnew Words::Section(doc);
doc->AppendChild(section);
section->PageSetup->SectionStart = Words::SectionStart::NewPage;
section->PageSetup->PaperSize = Words::PaperSize::A4;
Words::Body ^body = gcnew Words::Body(doc);
section->AppendChild(body);
Words::Paragraph ^para = gcnew Words::Paragraph(doc);
body->AppendChild(para);
para->ParagraphFormat->Alignment = Words::ParagraphAlignment::Center;
Words::Run ^run = gcnew Words::Run(doc);
run->Text = "Zeile1\r\nZeile2\r\nZeile3";
para->AppendChild(run);
doc->Save("d:\\temp\\sample.doc");