iTextSharp.text.rtf.table.RtfRow.CleanRow C# (CSharp) Méthode

CleanRow() protected méthode

protected CleanRow ( ) : void
Résultat void
        protected internal void CleanRow() {
            int i = 0;
            while (i < this.cells.Count) {
                if (((RtfCell) this.cells[i]).IsDeleted()) {
                    this.cells.RemoveAt(i);
                } else {
                    i++;
                }
            }
        }