PageTableArea Constructor |
Namespace: GroupDocs.Parser.DataAssembly: GroupDocs.Parser (in GroupDocs.Parser.dll) Version: 22.06.0
Syntaxpublic PageTableArea(
IEnumerable<double> rows,
IEnumerable<double> columns,
IEnumerable<PageTableAreaCell> cells,
Page page,
Rectangle rectangle
)
Public Sub New (
rows As IEnumerable(Of Double),
columns As IEnumerable(Of Double),
cells As IEnumerable(Of PageTableAreaCell),
page As Page,
rectangle As Rectangle
)
public:
PageTableArea(
IEnumerable<double>^ rows,
IEnumerable<double>^ columns,
IEnumerable<PageTableAreaCell^>^ cells,
Page^ page,
Rectangle^ rectangle
)
new :
rows : IEnumerable<float> *
columns : IEnumerable<float> *
cells : IEnumerable<PageTableAreaCell> *
page : Page *
rectangle : Rectangle -> PageTableArea
Parameters
- rows
- Type: System.Collections.GenericIEnumerableDouble
The collection of row heights. - columns
- Type: System.Collections.GenericIEnumerableDouble
The collection of column widths. - cells
- Type: System.Collections.GenericIEnumerablePageTableAreaCell
The collection of cells. - page
- Type: GroupDocs.Parser.DataPage
The page that contains the table. - rectangle
- Type: GroupDocs.Parser.DataRectangle
The rectangular area that contains the table.
See Also