當前位置: 首頁>>代碼示例>>C#>>正文


C# Table.InsertTable方法代碼示例

本文整理匯總了C#中iTextSharp.text.Table.InsertTable方法的典型用法代碼示例。如果您正苦於以下問題:C# Table.InsertTable方法的具體用法?C# Table.InsertTable怎麽用?C# Table.InsertTable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在iTextSharp.text.Table的用法示例。


在下文中一共展示了Table.InsertTable方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: AddElement


//.........這裏部分代碼省略.........
        /// JPEGs, GIFs or PNGs to a Cell.
        /// </remarks>
        /// <param name="element">the Element to add</param>
        public void AddElement(IElement element)
        {
            if (IsTable())
            {
                Table table = (Table) arrayList[0];
                Cell tmp = new Cell(element);
                tmp.Border = NO_BORDER;
                tmp.Colspan = table.Columns;
                table.AddCell(tmp);
                return;
            }
            switch (element.Type)
            {
                case Element.LISTITEM:
                case Element.ROW:
                case Element.CELL:
                    throw new BadElementException("You can't add listitems, rows or cells to a cell.");
                case Element.JPEG:
                case Element.IMGRAW:
                case Element.IMGTEMPLATE:
                    arrayList.Add(element);
                    break;
                case Element.LIST:
                    if (float.IsNaN(this.Leading))
                    {
                        leading = ((List) element).Leading;
                    }
                    if (((List) element).Size == 0) return;
                    arrayList.Add(element);
                    return;
                case Element.ANCHOR:
                case Element.PARAGRAPH:
                case Element.PHRASE:
                    if (float.IsNaN(leading))
                    {
                        leading = ((Phrase) element).Leading;
                    }
                    if (((Phrase) element).IsEmpty()) return;
                    arrayList.Add(element);
                    return;
                case Element.CHUNK:
                    if (((Chunk) element).IsEmpty()) return;
                    arrayList.Add(element);
                    return;
                case Element.TABLE:
                    Table table = new Table(3);
                    float[] widths = new float[3];
                    widths[1] = ((Table)element).WidthPercentage;

                switch (((Table)element).Alignment)
                {
                    case Element.ALIGN_LEFT:
                        widths[0] = 0f;
                        widths[2] = 100f - widths[1];
                        break;
                    case Element.ALIGN_CENTER:
                        widths[0] = (100f - widths[1]) / 2f;
                        widths[2] = widths[0];
                        break;
                    case Element.ALIGN_RIGHT:
                        widths[0] = 100f - widths[1];
                        widths[2] = 0f;
                        break;
                }
                    table.Widths = widths;
                    Cell tmp;
                    if (arrayList.Count == 0)
                    {
                        table.AddCell(Cell.DummyCell);
                    }
                    else
                    {
                        tmp = new Cell();
                        tmp.Border = NO_BORDER;
                        tmp.Colspan = 3;
                        foreach (IElement ele in arrayList)
                        {
                            tmp.Add(ele);
                        }
                        table.AddCell(tmp);
                    }
                    tmp = new Cell();
                    tmp.Border = NO_BORDER;
                    table.AddCell(tmp);
                    table.InsertTable((Table)element);
                    tmp = new Cell();
                    tmp.Border = NO_BORDER;
                    table.AddCell(tmp);
                    table.AddCell(Cell.DummyCell);
                    Clear();
                    arrayList.Add(table);
                    return;
                default:
                    arrayList.Add(element);
                    break;
            }
        }
開發者ID:hjgode,項目名稱:iTextSharpCF,代碼行數:101,代碼來源:Cell.cs

示例2: GetAllTable

        private Table GetAllTable(Table fieldTable)
        {
            Table allTable = new Table(1);
            int k = 0;

            if (HeaderTable != null)
            {
                allTable.InsertTable(HeaderTable, new System.Drawing.Point(k, 0));
                k++;
            }
            allTable.InsertTable(fieldTable, new System.Drawing.Point(k, 0));
            k++;
            if (FooterTable != null)
            {
                allTable.InsertTable(FooterTable, new System.Drawing.Point(k, 0));
            }

            //float[] widthf = new float[fieldTable.ProportionalWidths.Length];
            //fieldTable.ProportionalWidths.CopyTo(widthf, 0);

            //int[] widths = new int[fieldTable.ProportionalWidths.Length];
            //for (int i = 0; i < widthf.Length; i++)
            //{
            //    widths[i] = Convert.ToInt32(widthf[i]);
            //}
            //allTable.SetWidths(widths);
            return allTable;
        }
開發者ID:san90279,項目名稱:UK_OAS,代碼行數:28,代碼來源:PdfController.cs


注:本文中的iTextSharp.text.Table.InsertTable方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。