Skip to main content
All docs
V25.2
  • Table(Int32, Int32, Single, Single, 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(
        int rowCount,
        int columnCount,
        float x = 0F,
        float y = 0F,
        float width = NaNF,
        float height = NaNF
    )

    Parameters

    Name Type Description
    rowCount Int32

    The number of rows in the table.

    columnCount Int32

    The number of columns in the table.

    Optional Parameters

    Name Type Default Description
    x Single 0

    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 0

    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).

    width Single NaN

    The table width. This value is measured in Document units (1 document unit is equal to 1/300 of an inch).

    height Single NaN

    The table height. This value is measured in Document units (1 document unit is equal to 1/300 of an inch).

    See Also