diff options
author | Kurt Jung <kurt.w.jung@code.google.com> | 2013-11-19 05:51:35 -0500 |
---|---|---|
committer | Kurt Jung <kurt.w.jung@code.google.com> | 2013-11-19 05:51:35 -0500 |
commit | de815d3fa28b866e26d6564b164233b7bed812fd (patch) | |
tree | 1d9f8997a2b7290543a6010fdc2164accc66a2ec | |
parent | 914b5fdb6d43919fcc8228624315826853ded0c9 (diff) |
Restore comment about width and height in CellFormat.
-rw-r--r-- | fpdf.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1452,8 +1452,9 @@ func (f *Fpdf) SetAcceptPageBreakFunc(fnc func() bool) { // If automatic page breaking is enabled and the cell goes beyond the limit, a // page break is done before outputting. // -// w and h specify the width and height of the cell. If w is 0, it will be set -// to the remaining horizontal space on the page (until the right margin). +// w and h specify the width and height of the cell. If w is 0, the cell +// extends up to the right margin. Specifying 0 for h will result in no output, +// but the current position will be advanced by w. // // txtStr specifies the text to display. // |