Search Results for

    Show / Hide Table of Contents

    Class TableCell

    Inheritance
    System.Object
    ContentElement
    ParentElement
    TableElements
    TableCell
    Implements
    IronSoftware.Abstractions.IDocumentElement
    IronSoftware.IDocumentObject
    System.ICloneable
    IronSoftware.Abstractions.IElementContainer<ContentElementCollection, ContentElement>
    IElementContainer
    ITextContainer
    IDrawContainer
    Inherited Members
    TableElements.SetBorders(TableBorders)
    TableElements.Borders
    TableElements.BackgroundColor
    ParentElement.InsertChildToIndex(Int32, ContentElement[])
    ParentElement.Remove()
    ParentElement.RemoveChildren(ContentElement[])
    ParentElement.RemoveAllChildren()
    ParentElement.ExtractElements<T>()
    ParentElement.GetChildByIndex<T>(Int32)
    ParentElement.Clone()
    ParentElement.CloneObject()
    ParentElement.LogObjectTree()
    ParentElement.DefaultTextStyle
    ParentElement.Texts
    ParentElement.Tables
    ParentElement.Children
    ContentElement.Status
    ContentElement.Replace(ContentElement)
    ContentElement.GetIndex<T>()
    ContentElement.Parent
    ContentElement.ObjNum
    ContentElement.PageIndex
    ContentElement.DocumentId
    Namespace: IronWord.Models
    Assembly: IronWord.dll
    Syntax
    public class TableCell : TableElements, IDocumentElement, IDocumentObject, ICloneable, IElementContainer<ContentElementCollection, ContentElement>, IElementContainer, ITextContainer, IDrawContainer

    Constructors

    TableCell()

    Declaration
    public TableCell()

    TableCell(ContentElement[])

    Declaration
    public TableCell(params ContentElement[] contents)
    Parameters
    Type Name Description
    ContentElement[] contents

    Properties

    BottomMargin

    Declaration
    public double BottomMargin { get; set; }
    Property Value
    Type Description
    System.Double

    Contents

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

    FitText

    Declaration
    public bool FitText { get; set; }
    Property Value
    Type Description
    System.Boolean

    GridSpan

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

    Index

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

    LeftMargin

    Declaration
    public double LeftMargin { get; set; }
    Property Value
    Type Description
    System.Double

    MultiLevelTextLists

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

    Paragraphs

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

    RightMargin

    Declaration
    public double RightMargin { get; set; }
    Property Value
    Type Description
    System.Double

    Shading

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

    TextAlignment

    Declaration
    public JustificationValues TextAlignment { get; set; }
    Property Value
    Type Description
    JustificationValues

    TopMargin

    Declaration
    public double TopMargin { get; set; }
    Property Value
    Type Description
    System.Double

    VerticalAlignment

    Declaration
    public VerticalAlign VerticalAlignment { get; set; }
    Property Value
    Type Description
    VerticalAlign

    Width

    Declaration
    public double Width { get; set; }
    Property Value
    Type Description
    System.Double

    Methods

    AddChild(ContentElement[])

    Declaration
    public override void AddChild(params ContentElement[] children)
    Parameters
    Type Name Description
    ContentElement[] children
    Overrides
    ParentElement.AddChild(ContentElement[])

    AddImage(AnyBitmap)

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

    AddImage(ImageContent)

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

    AddImage(Stream)

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

    AddImage(String)

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

    AddMultiLevelTextList(MultiLevelTextList)

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

    AddParagraph(Paragraph)

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

    AddShape(ShapeContent)

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

    AddTable(Table)

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

    AddText(TextContent)

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

    AddText(String)

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

    CloneStruct()

    Declaration
    public TableCell CloneStruct()
    Returns
    Type Description
    TableCell

    ExtractText()

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

    GetWidth(Units)

    Declaration
    public double GetWidth(Units measurementUnit)
    Parameters
    Type Name Description
    Units measurementUnit
    Returns
    Type Description
    System.Double

    InsertCellAfterSelf(TableCell)

    Declaration
    public TableCell InsertCellAfterSelf(TableCell cell)
    Parameters
    Type Name Description
    TableCell cell
    Returns
    Type Description
    TableCell

    InsertCellBeforeSelf(TableCell)

    Declaration
    public TableCell InsertCellBeforeSelf(TableCell cell)
    Parameters
    Type Name Description
    TableCell cell
    Returns
    Type Description
    TableCell

    ReplaceText(String, String)

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

    SetContent(ContentElement)

    Declaration
    public TableCell SetContent(ContentElement content)
    Parameters
    Type Name Description
    ContentElement content
    Returns
    Type Description
    TableCell

    SetWidth(Double, Units)

    Declaration
    public TableCell SetWidth(double width, Units measurementUnit)
    Parameters
    Type Name Description
    System.Double width
    Units measurementUnit
    Returns
    Type Description
    TableCell

    Split(Int32, Int32)

    Declaration
    public TableCell Split(int toRow, int toColumn)
    Parameters
    Type Name Description
    System.Int32 toRow
    System.Int32 toColumn
    Returns
    Type Description
    TableCell

    Implements

    IronSoftware.Abstractions.IDocumentElement
    IronSoftware.IDocumentObject
    System.ICloneable
    IronSoftware.Abstractions.IElementContainer<, >
    IElementContainer
    ITextContainer
    IDrawContainer

    Inherited members

    SetBorders(TableBorders)
    Borders
    BackgroundColor
    InsertChildToIndex(Int32, ContentElement[])
    Remove()
    RemoveChildren(ContentElement[])
    RemoveAllChildren()
    ExtractElements<T>()
    GetChildByIndex<T>(Int32)
    Clone()
    CloneObject()
    LogObjectTree()
    DefaultTextStyle
    Texts
    Tables
    Children
    Status
    Replace(ContentElement)
    GetIndex<T>()
    Parent
    ObjNum
    PageIndex
    DocumentId
    ☀
    ☾
    Downloads
    • Download with NuGet
    • Start for Free
    In This Article
    Back to top
    Install with NuGet
    Want to deploy IronWord to a live project for FREE?
    What’s included?
    30 days of fully-functional product
    Test and share in a live environment
    No watermarks in production
    Get your free 30-day Trial Key instantly.
    No credit card or account creation required
    Your Trial License Key has been emailed to you.
    Download IronWord free to apply
    your Trial Licenses Key
    Install with NuGet View Licenses
    Licenses from $499. Have a question? Get in touch.