SelectMany stage

SelectMany is the operation that can get from the objects collection the sequence of requested objects.

SelectManyStage syntax

SelectManyStage
  : 'selectMany' '(' Selector ')'  
  ;

Related tokens

Selector

Usage examples

  1. Select table rows csharp select(tables)->selectMany(tableRows) // PdfTableRow 2. Select table cells csharp select(tables)->selectMany(tableCells) // PdfTableCell