Enables/disables automatic insertion of empty cells before table is rendered. (default = false)

Namespace: iTextSharp.text
Assembly: ITextSharp (in ITextSharp.dll) Version: 4.1.6.0

Syntax

C#
public bool AutoFillEmptyCells { set; }
Visual Basic
Public WriteOnly Property AutoFillEmptyCells As Boolean
	Set
Visual C++
public:
property bool AutoFillEmptyCells {
	void set (bool value);
}

Field Value

enable/disable autofill

Remarks

As some people may want to create a table, fill only a couple of the cells and don't bother with investigating which empty ones need to be added, this default behaviour may be very welcome. Disabling is recommended to increase speed. (empty cells should be added through extra code then)

See Also