WinForms

Code Examples Upgrade Guide User Guide Demos Support Forums Download
  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Interface ITable

    Show / Hide Table of Contents

    Interface ITable

    Interface publishes table functionality

    Inherited Members
    IParagraphItem.Clone(IParagraph)
    IParagraphItem.OwnerParagraph
    IEntityBase.Document
    IEntityBase.Owner
    Namespace: Syncfusion.DLS
    Assembly: Syncfusion.DLS.Base.dll
    Syntax
    public interface ITable : IParagraphItem, IEntityBase

    Properties

    Columns

    Gets table columns.

    Declaration
    TableColumnCollection Columns { get; }
    Property Value
    Type Description
    TableColumnCollection

    Item[Int32, Int32]

    Gets cell by row/column indexes.

    Declaration
    TableCell this[int row, int column] { get; }
    Parameters
    Type Name Description
    System.Int32 row
    System.Int32 column
    Property Value
    Type Description
    TableCell

    LastCell

    Gets last cell in last row.

    Declaration
    TableCell LastCell { get; }
    Property Value
    Type Description
    TableCell

    LastRow

    Gets last row in table.

    Declaration
    TableRow LastRow { get; }
    Property Value
    Type Description
    TableRow

    Rows

    Gets row collection.

    Declaration
    RowCollection Rows { get; }
    Property Value
    Type Description
    RowCollection

    TableFormat

    Gets table format.

    Declaration
    TableFormat TableFormat { get; }
    Property Value
    Type Description
    TableFormat
    Remarks

    Not supported by Essential PDF

    Width

    Gets / sets table width.

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

    Not supported by Essential PDF

    Methods

    AddColumn()

    Adds new column to table.

    Declaration
    void AddColumn()

    AddColumn(Int32)

    Adds several columns to table.

    Declaration
    void AddColumn(int columnsCount)
    Parameters
    Type Name Description
    System.Int32 columnsCount

    AddRow()

    Adds new row to table.

    Declaration
    TableRow AddRow()
    Returns
    Type Description
    TableRow

    AddRow(Boolean)

    Adds new row to table.

    Declaration
    TableRow AddRow(bool isCopyFormat)
    Parameters
    Type Name Description
    System.Boolean isCopyFormat
    Returns
    Type Description
    TableRow

    ResetCells(Int32, Int32)

    Resets row/column dimensions.

    Declaration
    void ResetCells(int rows, int columns)
    Parameters
    Type Name Description
    System.Int32 rows
    System.Int32 columns
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved