summaryrefslogtreecommitdiff
path: root/fpdf.go
diff options
context:
space:
mode:
authorKurt <kurt.w.jung@gmail.com>2016-12-16 14:14:28 -0500
committerKurt <kurt.w.jung@gmail.com>2016-12-16 14:14:28 -0500
commitfbdaed0ce0c9742369ce44763b4a8cbbd492b771 (patch)
tree8a00992bcaba218f58183f0c7eea4693990d65bd /fpdf.go
parentc81806e867518d8a4240c3aa2f9b8151b32fa46f (diff)
Clarify state of current position after call to MultiCell(). Thanks, Roger Flores
Diffstat (limited to 'fpdf.go')
-rw-r--r--fpdf.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/fpdf.go b/fpdf.go
index 5720137..6d8fd39 100644
--- a/fpdf.go
+++ b/fpdf.go
@@ -2026,6 +2026,9 @@ func (f *Fpdf) SplitLines(txt []byte, w float64) [][]byte {
// Text can be aligned, centered or justified. The cell block can be framed and
// the background painted. See CellFormat() for more details.
//
+// The current position after calling MultiCell() is the beginning of the next
+// line, equivalent to calling CellFormat with ln equal to 1.
+//
// w is the width of the cells. A value of zero indicates cells that reach to
// the right margin.
//