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

IsReserved() private method

Returns true/false when this position in the Row has been reserved, either filled or through a colspan of an Element.
private IsReserved ( int column ) : bool
column int the column.
return bool
        internal bool IsReserved(int column)
        {
            return reserved[column];
        }