当前位置: 首页>>代码示例>>C#>>正文


C# List.Reverse方法代码示例

本文整理汇总了C#中iTextSharp.text.List.Reverse方法的典型用法代码示例。如果您正苦于以下问题:C# List.Reverse方法的具体用法?C# List.Reverse怎么用?C# List.Reverse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在iTextSharp.text.List的用法示例。


在下文中一共展示了List.Reverse方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ProcessRow

 /**
  * Gets the TableWrapper from the Stack and adds a new row.
  * @since 5.0.6
  */
 virtual public void ProcessRow() {
     List<PdfPCell> row = new List<PdfPCell>();
     List<float> cellWidths = new List<float>();
     bool percentage = false;
     float width;
     float totalWidth = 0;
     int zeroWidth = 0;
     TableWrapper table = null;
     while (true) {
         IElement obj = stack.Pop();
         if (obj is CellWrapper) {
             CellWrapper cell = (CellWrapper)obj;
             width = cell.Width;
             cellWidths.Add(width);
             percentage |= cell.IsPercentage;
             if (width == 0) {
                 zeroWidth++;
             }
             else {
                 totalWidth += width;
             }
             row.Add(cell.Cell);
         }
         if (obj is TableWrapper) {
             table = (TableWrapper) obj;
             break;
         }
     }
     table.AddRow(row);
     if (cellWidths.Count > 0) {
         // cells come off the stack in reverse, naturally
         totalWidth = 100 - totalWidth;
         cellWidths.Reverse();
         float[] widths = new float[cellWidths.Count];
         bool hasZero = false;
         for (int i = 0; i < widths.Length; i++) {
             widths[i] = cellWidths[i];
             if (widths[i] == 0 && percentage && zeroWidth > 0) {
                 widths[i] = totalWidth / zeroWidth;
             }
             if (widths[i] == 0) {
                 hasZero = true;
                 break;
             }
         }
         if (!hasZero)
             table.ColWidths = widths;
     }
     stack.Push(table);
 }
开发者ID:jagruti23,项目名称:itextsharp,代码行数:54,代码来源:HTMLWorker.cs

示例2: AddRow

 /**
  * Adds a new row to the table.
  * @param row a list of PdfPCell elements
  */
 public void AddRow(IList<PdfPCell> row) {
     if (row != null) {
         List<PdfPCell> t = new List<PdfPCell>(row);
         t.Reverse();
         rows.Add(t);
     }
 }
开发者ID:Gianluigi,项目名称:dssnet,代码行数:11,代码来源:TableWrapper.cs


注:本文中的iTextSharp.text.List.Reverse方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。