Skip to main content
All docs
V25.2
  • Table(IEnumerable<TableRow>, IEnumerable<TableColumn>, Single, Single) Constructor

    Initializes a new instance of the Table class with specified settings.

    Namespace: DevExpress.Docs.Presentation

    Assembly: DevExpress.Docs.Presentation.v25.2.dll

    Declaration

    public Table(
        IEnumerable<TableRow> rows,
        IEnumerable<TableColumn> columns,
        float x,
        float y
    )

    Parameters

    Name Type Description
    rows IEnumerable<TableRow>

    Specifies the collection of rows to be added to the table.

    columns IEnumerable<TableColumn>

    Specifies the collection of columns to be added to the table.

    x Single

    The x-coordinate of the table’s position. The origin is at the slide’s top-left corner. This value is measured in Document units (1 document unit is equal to 1/300 of an inch).

    y Single

    The y-coordinate of the table’s position. The origin is at the slide’s top-left corner. This value is measured in Document units (1 document unit is equal to 1/300 of an inch).

    See Also