iTextSharp.text.Row.IsReserved C# (CSharp) Метод

IsReserved() приватный Метод

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.
Результат bool
        internal bool IsReserved(int column)
        {
            return reserved[column];
        }