Skip to content

Select stage

Select is the operation that can get from the single object the sequence of requested objects.

SelectStage syntax

antlr
SelectStage
  : 'select' '(' Selector ')'  
  ;

Related tokens
Selector

Usage examples

  1. Select tables
    csharp
    select(tables) // PdfTable[]
  2. Select table rows
    csharp
    select(tableRows) // PdfTableRow[]
  3. Select table cells
    csharp
    select(tableCells) // PdfTableCell[]