iTextSharp.text.Row.IsReserved C# (CSharp) Méthode

IsReserved() private méthode

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.
Résultat bool
        internal bool IsReserved(int column)
        {
            return reserved[column];
        }