This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static float TotalRowHeights( | |
| Document document, PdfContentByte content, | |
| PdfPTable table, params int[] wantedRows) | |
| { | |
| float height = 0f; | |
| ColumnText ct = new ColumnText(content); | |
| // respect current Document.PageSize | |
| ct.SetSimpleColumn( | |
| document.Left, document.Bottom, | |
| document.Right, document.Top |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class DataflowTestPipeline | |
| { | |
| public TransformBlock<Thing, Thing> MainBlock { get; set; } | |
| public TransformBlock<Thing, Thing> Block1 { get; set; } | |
| public TransformBlock<Thing, Thing> Block2 { get; set; } | |
| public TransformBlock<Thing, Thing> Block3 { get; set; } | |
| public ActionBlock<Thing> EndBlock { get; set; } | |
| public void CreatePipelineSynchronousWithLinkOptions() | |
| { |