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];
        }