iTextSharp.text.SimpleTable.AddElement C# (CSharp) Méthode

AddElement() public méthode

public AddElement ( SimpleCell element ) : void
element SimpleCell
Résultat void
        public void AddElement(SimpleCell element) {
            if (!element.Cellgroup) {
                throw new BadElementException("You can't add cells to a table directly, add them to a row first.");
            }
            content.Add(element);
        }