iTextSharp.text.Row.Reserve C# (CSharp) Method

Reserve() private method

Reserves a Cell in the Row.
private Reserve ( int column ) : bool
column int the column that has to be reserved.
return bool
        internal bool Reserve(int column)
        {
            return Reserve(column, 1);
        }

Same methods

Row::Reserve ( int column, int size ) : bool