iTextSharp.text.Row.IsEmpty C# (CSharp) 메소드

IsEmpty() 공개 메소드

Checks if the row is empty.
public IsEmpty ( ) : bool
리턴 bool
        public bool IsEmpty()
        {
            for (int i = 0; i < columns; i++) {
                if (cells[i] != null) {
                    return false;
                }
            }
            return true;
        }