iTextSharp.text.pdf.ColumnText.SetColumns C# (CSharp) Метод

SetColumns() публичный метод

public SetColumns ( float leftLine, float rightLine ) : void
leftLine float
rightLine float
Результат void
    public void SetColumns(float[] leftLine, float[] rightLine) {
        maxY = -10e20f;
        minY = 10e20f;
        YLine = Math.Max(leftLine[1], leftLine[leftLine.Length - 1]);
        rightWall = ConvertColumn(rightLine);
        leftWall = ConvertColumn(leftLine);
        rectangularWidth = -1;
        rectangularMode = false;
    }
    

Usage Example

Пример #1
0
 // ===========================================================================
 public override void Write(Stream stream)
 {
     // step 1
     using (Document document = new Document())
     {
         // step 2
         PdfWriter writer = PdfWriter.GetInstance(document, stream);
         // step 3
         document.Open();
         // step 4
         PdfContentByte canvas = writer.DirectContent;
         DrawRectangles(canvas);
         ColumnText ct = new ColumnText(canvas);
         ct.Alignment = Element.ALIGN_JUSTIFIED;
         ct.Leading = 14;
         int column = 0;
         ct.SetColumns(
           new float[] { 36, 806, 36, 670, 108, 670, 108, 596, 36, 596, 36, 36 },
           new float[] { 296, 806, 296, 484, 259, 484, 259, 410, 296, 410, 296, 36 }
         );
         ct.SetColumns(LEFT[column], RIGHT[column]);
         // ct.SetColumns(LEFT[column], RIGHT[column]);
         // iText-ONLY, 'Initial value of the status' => 0
         // iTextSharp **DOES NOT** include this member variable
         // int status = ColumnText.START_COLUMN;
         int status = 0;
         Phrase p;
         float y;
         IEnumerable<Movie> movies = PojoFactory.GetMovies();
         foreach (Movie movie in movies)
         {
             y = ct.YLine;
             p = CreateMovieInformation(movie);
             ct.AddText(p);
             status = ct.Go(true);
             if (ColumnText.HasMoreText(status))
             {
                 column = Math.Abs(column - 1);
                 if (column == 0)
                 {
                     document.NewPage();
                     DrawRectangles(canvas);
                 }
                 ct.SetColumns(LEFT[column], RIGHT[column]);
                 y = 806;
             }
             ct.YLine = y;
             ct.SetText(p);
             status = ct.Go();
         }
     }
 }
All Usage Examples Of iTextSharp.text.pdf.ColumnText::SetColumns