Click or drag to resize

Run Class

Represents a run of characters with the same character formatting.
Inheritance Hierarchy
SystemObject
  SautinSoft.DocumentElement
    SautinSoft.DocumentInline
      SautinSoft.DocumentRun

Namespace: SautinSoft.Document
Assembly: SautinSoft.Document (in SautinSoft.Document.dll) Version: 2024.4.24
Syntax
public sealed class Run : Inline

The Run type exposes the following members.

Constructors
 NameDescription
Public methodCode exampleRun(DocumentCore) Initializes a new instance of the Run class.
Public methodCode exampleRun(DocumentCore, Char) Initializes a new instance of the Run class.
Public methodCode exampleRun(DocumentCore, String) Initializes a new instance of the Run class.
Public methodCode exampleRun(DocumentCore, Char, CharacterFormat) Initializes a new instance of the Run class.
Public methodCode exampleRun(DocumentCore, String, CharacterFormat) Initializes a new instance of the Run class.
Top
Properties
 NameDescription
Public propertyCode exampleCharacterFormat Gets or sets the character format.
Public propertyElementType Gets the ElementType of this element instance.
(Overrides ElementElementType)
Public propertyCode exampleText Gets or sets the text of the run.
Top
Methods
 NameDescription
Public methodClone Clones this element instance.
Top
Example

See Developer Guide: Get all Text (Run objects) from DOCX document and show it on Console

Get all Text (Run objects) from DOCX document and show it on Console using C#
using System;
using System.IO;
using System.Linq;
using SautinSoft.Document;

namespace Example
{
    class Program
    {
        static void Main(string[] args)
        {
            // Get your free 30-day key here:   
            // https://sautinsoft.com/start-for-free/

            GetText();
        }
        /// <summary>
        /// Get all Text (Run objects) from DOCX document and show it on Console.
        /// </summary>
        /// <remarks>
        /// Details: https://sautinsoft.com/products/document/help/net/developer-guide/get-text-from-docx-document-net-csharp-vb.php
        /// </remarks>
        static void GetText()
        {
            string filePath = @"..\..\..\example.docx";
            DocumentCore dc = DocumentCore.Load(filePath);

            // Get all Run elements from document.
            foreach (Run run in dc.GetChildElements(true,ElementType.Run))
            {
                Console.WriteLine(run.Text);
            }

            Console.ReadKey();
        }
    }
}
Get all Text (Run objects) from DOCX document and show it on Console using VB.Net
Imports System
Imports System.IO
Imports SautinSoft.Document

Module Sample
    Sub Main()
        GetText()
    End Sub
    ''' Get your free 30-day key here:   
    ''' https://sautinsoft.com/start-for-free/
    ''' <summary>
    ''' Get all Text (Run objects) from DOCX document and show it on Console.
    ''' </summary>
    ''' <remarks>
    ''' Details: https://sautinsoft.com/products/document/help/net/developer-guide/get-text-from-docx-document-net-csharp-vb.php
    ''' </remarks>
    Sub GetText()
        Dim filePath As String = "..\..\..\example.docx"
        Dim dc As DocumentCore = DocumentCore.Load(filePath)

        ' Get all Run elements from document.
        For Each run As Run In dc.GetChildElements(True, ElementType.Run)
            Console.WriteLine(run.Text)
        Next run
        Console.ReadKey()
    End Sub
End Module
See Also