Provides typed access to a collection of Run nodes.
For a list of all members of this type, see RunCollection Members.
System.Object
Aspose.Words.NodeCollection
Aspose.Words.RunCollection
[Visual Basic]Public Class RunCollection
Example
Creates a footer using the document object model and inserts it into a section.
[C#]
Document doc = new Document();
HeaderFooter footer = new HeaderFooter(doc, HeaderFooterType.FooterPrimary);
doc.FirstSection.HeadersFooters.Add(footer);
Paragraph para = new Paragraph(doc);
footer.Paragraphs.Add(para);
Run run = new Run(doc, "TEST FOOTER");
para.Runs.Add(run);
doc.Save(MyDir + "HeaderFooter.CreateFooter Out.doc");
[Visual Basic]
Dim doc As Document = New