iTextSharp.tool.xml.html.table.TableRowElement.TableRowElement C# (CSharp) Method

TableRowElement() public method

public TableRowElement ( IList currentContent, Place place ) : System
currentContent IList
place Place
return System
        public TableRowElement(IList<IElement> currentContent, Place place)
        {
            // filter out none TD elements, discard others
            content = new List<HtmlCell>(currentContent.Count);
            foreach (IElement e in currentContent) {
                if (e is HtmlCell) {
                    content.Add((HtmlCell) e);
                }
            }
            this.place = place;
        }