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
- Select tablescsharp
select(tables) // PdfTable[]
- Select table rowscsharp
select(tableRows) // PdfTableRow[]
- Select table cellscsharp
select(tableCells) // PdfTableCell[]