Search Results for

    Show / Hide Table of Contents

    Class DocumentSection

    Represents a section within a document, containing various content elements like paragraphs, text runs, and tables.

    Inheritance
    System.Object
    ContentElement
    ParentElement
    DocumentSection
    Implements
    IElementContainer
    ITextContainer
    IDrawContainer
    IronSoftware.Abstractions.Word.IDocumentSection
    IronSoftware.Abstractions.Word.IWordDocumentObject
    IronSoftware.Abstractions.IDocumentObject
    System.ICloneable
    IronSoftware.Abstractions.IParent<IronSoftware.Abstractions.Word.IWordDocumentObjectCollection, IronSoftware.Abstractions.Word.IWordDocumentObject>
    Inherited Members
    ParentElement.AddChild(IWordDocumentObject[])
    ParentElement.InsertChildToIndex(Int32, IWordDocumentObject[])
    ParentElement.Remove()
    ParentElement.RemoveChildren(IWordDocumentObject[])
    ParentElement.RemoveAllChildren()
    ParentElement.ExtractElements<T>()
    ParentElement.GetChildByIndex<T>(Int32)
    ParentElement.Clone()
    ParentElement.CloneObject()
    ParentElement.LogObjectTree()
    ParentElement.Texts
    ParentElement.Tables
    ParentElement.Children
    ContentElement.Replace(IWordDocumentObject)
    ContentElement.GetIndex<T>()
    ContentElement.Parent
    ContentElement.Status
    Namespace: IronWord.Models
    Assembly: IronWord.dll
    Syntax
    public class DocumentSection : ParentElement, IElementContainer, ITextContainer, IDrawContainer, IDocumentSection, IWordDocumentObject, IDocumentObject, ICloneable, IParent<IWordDocumentObjectCollection, IWordDocumentObject>

    Constructors

    DocumentSection(ContentElement[])

    Initializes a new instance of the DocumentSection class.

    Declaration
    public DocumentSection(params ContentElement[] children)
    Parameters
    Type Name Description
    ContentElement[] children

    Properties

    BottomMargin

    Bottom margin of document section in pts.

    Declaration
    public float BottomMargin { get; }
    Property Value
    Type Description
    System.Single

    Height

    Height of document section in pts.

    Declaration
    public float Height { get; }
    Property Value
    Type Description
    System.Single

    Index

    Gets the index of this section within the parent's list of children.

    Declaration
    public int Index { get; set; }
    Property Value
    Type Description
    System.Int32

    LeftMargin

    Left margin of document section in pts.

    Declaration
    public float LeftMargin { get; }
    Property Value
    Type Description
    System.Single

    MultiLevelTextLists

    Gets a list of all ShapeContent elements contained within this document section.

    Declaration
    public List<MultiLevelTextList> MultiLevelTextLists { get; }
    Property Value
    Type Description
    System.Collections.Generic.List<MultiLevelTextList>

    A List containing all shape elements.

    PageSetup

    Gets or sets the page setup information for this section, including headers and footers.

    Declaration
    public PageSetup PageSetup { get; set; }
    Property Value
    Type Description
    PageSetup

    Paragraphs

    Gets a list of all Paragraph elements contained within this document section.

    Declaration
    public List<Paragraph> Paragraphs { get; }
    Property Value
    Type Description
    System.Collections.Generic.List<Paragraph>

    A List containing all paragraph elements.

    RightMargin

    Right margin of document section in pts.

    Declaration
    public float RightMargin { get; }
    Property Value
    Type Description
    System.Single

    Runs

    Gets a list of all Run elements contained within this document section.

    Declaration
    public List<Run> Runs { get; }
    Property Value
    Type Description
    System.Collections.Generic.List<Run>

    A List containing all run elements.

    TopMargin

    Top margin of document section in pts.

    Declaration
    public float TopMargin { get; }
    Property Value
    Type Description
    System.Single

    Width

    Width of document section in pts.

    Declaration
    public float Width { get; }
    Property Value
    Type Description
    System.Single

    Methods

    AddImage(AnyBitmap)

    Adds an image to this TableCell from an IronSoftware.Drawing.AnyBitmap object.

    Declaration
    public ImageContent AddImage(AnyBitmap anyBitmap)
    Parameters
    Type Name Description
    IronSoftware.Drawing.AnyBitmap anyBitmap
    Returns
    Type Description
    ImageContent

    AddImage(ImageContent)

    Adds a new Image object to the section.

    Declaration
    public ImageContent AddImage(ImageContent imageContent)
    Parameters
    Type Name Description
    ImageContent imageContent

    The Image object to be added.

    Returns
    Type Description
    ImageContent

    AddImage(Stream)

    Adds an image to the to the section.

    Declaration
    public ImageContent AddImage(Stream imageStream)
    Parameters
    Type Name Description
    System.IO.Stream imageStream

    The stream image to be loaded.

    Returns
    Type Description
    ImageContent

    The added Image.

    AddImage(String)

    Adds an image to the to the section.

    Declaration
    public ImageContent AddImage(string imagePath)
    Parameters
    Type Name Description
    System.String imagePath

    The physical path of Image to be loaded.

    Returns
    Type Description
    ImageContent

    The added Image.

    AddMultiLevelTextList(MultiLevelTextList)

    Adds a new MultiLevelTextList object to the section.

    Declaration
    public MultiLevelTextList AddMultiLevelTextList(MultiLevelTextList multiLevelTextList)
    Parameters
    Type Name Description
    MultiLevelTextList multiLevelTextList

    The multi-level text list object to be added.

    Returns
    Type Description
    MultiLevelTextList

    AddParagraph(Paragraph)

    Adds a new Paragraph object to the section.

    Declaration
    public Paragraph AddParagraph(Paragraph paragraph)
    Parameters
    Type Name Description
    Paragraph paragraph

    The Paragraph object to be added.

    Returns
    Type Description
    Paragraph

    AddRun(Run)

    Adds a run to the last paragraph of the section.

    Declaration
    public Run AddRun(Run run)
    Parameters
    Type Name Description
    Run run

    The run to be added.

    Returns
    Type Description
    Run

    AddShape(ShapeContent)

    Adds a new ShapeContent object to the section.

    Declaration
    public ShapeContent AddShape(ShapeContent shapeContent)
    Parameters
    Type Name Description
    ShapeContent shapeContent

    The ShapeContent object to be added.

    Returns
    Type Description
    ShapeContent

    AddTable(Table)

    Adds a new Table object to the section.

    Declaration
    public Table AddTable(Table table)
    Parameters
    Type Name Description
    Table table

    The Table object to be added.

    Returns
    Type Description
    Table

    AddText(TextContent)

    Adds a TextContent object to the last paragraph of the section.

    Declaration
    public TextContent AddText(TextContent textContent)
    Parameters
    Type Name Description
    TextContent textContent

    The TextContent object to be added.

    Returns
    Type Description
    TextContent

    AddText(String)

    Adds text to the last paragraph of the section.

    Declaration
    public TextContent AddText(string text)
    Parameters
    Type Name Description
    System.String text

    The text to be added.

    Returns
    Type Description
    TextContent

    ExtractImages()

    Extract all images from this container

    Declaration
    public List<ImageContent> ExtractImages()
    Returns
    Type Description
    System.Collections.Generic.List<ImageContent>

    List of images

    ExtractShapes()

    Extract all shapes from this container

    Declaration
    public List<ShapeContent> ExtractShapes()
    Returns
    Type Description
    System.Collections.Generic.List<ShapeContent>

    List of path segment collections

    ExtractText()

    Extract all text from the container

    Declaration
    public string ExtractText()
    Returns
    Type Description
    System.String

    Extracted text

    FindText(String)

    Find the first text element which contains the specified text

    Declaration
    public TextContent FindText(string find)
    Parameters
    Type Name Description
    System.String find

    Text to find

    Returns
    Type Description
    TextContent

    Text element containing the specified text

    Remove(TextContent)

    Remove the specified text element

    Declaration
    public bool Remove(TextContent element)
    Parameters
    Type Name Description
    TextContent element

    Text element to remove

    Returns
    Type Description
    System.Boolean

    True if the element was found and removed, False otherwise

    ReplaceText(String, String)

    Replace all instances of the specified text

    Declaration
    public void ReplaceText(string find, string replace)
    Parameters
    Type Name Description
    System.String find

    Text to replace

    System.String replace

    Replacement text

    Implements

    IElementContainer
    ITextContainer
    IDrawContainer
    IronSoftware.Abstractions.Word.IDocumentSection
    IronSoftware.Abstractions.Word.IWordDocumentObject
    IronSoftware.Abstractions.IDocumentObject
    System.ICloneable
    IronSoftware.Abstractions.IParent<, >

    Inherited members

    AddChild(IWordDocumentObject[])
    InsertChildToIndex(Int32, IWordDocumentObject[])
    Remove()
    RemoveChildren(IWordDocumentObject[])
    RemoveAllChildren()
    ExtractElements<T>()
    GetChildByIndex<T>(Int32)
    Clone()
    CloneObject()
    LogObjectTree()
    Texts
    Tables
    Children
    Replace(IWordDocumentObject)
    GetIndex<T>()
    Parent
    Status
    ☀
    ☾
    Downloads
    • Download with NuGet
    • Start for Free
    In This Article
    Back to top
    Install with NuGet
    IronWord_for_dotnet_log2o
    Blue key in circleGet started for FREE
    No credit card required
    Test in a live environment

    Test in production without watermarks.
    Works wherever you need it to.

    Fully-functional product

    Get 30 days of fully functional product.
    Have it up and running in minutes.

    24/5 technical support

    Full access to our support engineering team during your product trial

    Grey key in circleGet started for FREE
    The trial form was submitted successfully.
    Calendar in circleBook Free Live Demo
    No contact, no card details, no commitments Book a 30-minute, personal demo.
    Here's what to expect:

    A live demo of our product and its key features

    Get project specific feature recommendations

    All your questions are answered to make sure you have all the information you need. (No commitment whatsoever.)

    Grey key in circleBook Free Live Demo
    Your booking has been completed Check your e-mail for confirmation
    Support Team Member 6 related to The C# PDF Library Support Team Member 14 related to The C# PDF Library Support Team Member 4 related to The C# PDF Library Support Team Member 2 related to The C# PDF Library
    Online 24/5
    Need help? Our sales team would be glad to help you.
    Try the Enterprise Trial
    ironpdf_for_dotnet_log2o
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    bullet_checkedNo credit card or account creation required
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    Blue key in circleNo credit card or account creation required
    Green Check in orange circle
    The trial form was submitted successfully.
    badge_greencheck_in_yellowcircle
    Thank you for starting a trial

    Please check your email for the trial license key.

    If you don’t receive an email, please start a live chat or email support@ironsoftware.com

    Install with NuGet
    View Licensing
    • Logo Aetna
    • Logo NASA
    • Logo GE
    • Logo Porsche
    • Logo USDA
    • Logo Qatar
    Join Millions of Engineers who’ve tried IronWord