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