iTextSharp.text.Row.Row C# (CSharp) 메소드

Row() 개인적인 메소드

Constructs a Row with a certain number of columns.
private Row ( int columns ) : System
columns int a number of columns
리턴 System
        internal Row(int columns)
        {
            this.columns = columns;
            reserved = new bool[columns];
            cells = new Object[columns];
            currentColumn = 0;
        }