Skip to content

PDFFlowTableRowCollection

Namespace: O2S.Components.PDF4NET.FlowDocument

Defines a collection of rows in a table.

public class PDFFlowTableRowCollection : System.Collections.ObjectModel.Collection`1[[O2S.Components.PDF4NET.FlowDocument.PDFFlowTableRow, O2S.Components.PDF4NET.NetStandard, Version=16.3.0.1, Culture=neutral, PublicKeyToken=80d03dd9e5b85317]]

Inheritance ObjectCollection<PDFFlowTableRow>PDFFlowTableRowCollection
Implements

Properties

Count

public int Count { get; }

Property Value

Int32


Item

public PDFFlowTableRow Item { get; set; }

Property Value

PDFFlowTableRow


Methods

Add()

Add a new empty row in the collection.

public PDFFlowTableRow Add()

Returns

PDFFlowTableRow
The row that has been added.


AddRowWithCells(Object[])

Adds a new row in the collection and creates a string cell for each value in the array.

public PDFFlowTableRow AddRowWithCells(Object[] cellContents)

Parameters

cellContents Object[]
Initial content for the row's cells.

Returns

PDFFlowTableRow
The newly created row.