iTextSharp.text.SimpleCell.CreateCell C# (CSharp) Метод

CreateCell() публичный Метод

public CreateCell ( SimpleCell rowAttributes ) : Cell
rowAttributes SimpleCell
Результат Cell
        public Cell CreateCell(SimpleCell rowAttributes) {
            Cell cell = new Cell();
            cell.CloneNonPositionParameters(rowAttributes);
            cell.SoftCloneNonPositionParameters(this);
            cell.Colspan = colspan;
            cell.HorizontalAlignment = horizontalAlignment;
            cell.VerticalAlignment = verticalAlignment;
            cell.UseAscender = useAscender;
            cell.UseBorderPadding = useBorderPadding;
            cell.UseDescender = useDescender;
            foreach (IElement element in content) {
                cell.AddElement(element);
            }
            return cell;
        }