From b009b7d368cb376788ba550784d21285cfbeded2 Mon Sep 17 00:00:00 2001
From: fossee-dell
Date: Wed, 9 Aug 2017 14:55:43 +0530
Subject: Created proposal form
---
pdf/fpdf/doc/addpage.htm | 56 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 56 insertions(+)
create mode 100755 pdf/fpdf/doc/addpage.htm
(limited to 'pdf/fpdf/doc/addpage.htm')
diff --git a/pdf/fpdf/doc/addpage.htm b/pdf/fpdf/doc/addpage.htm
new file mode 100755
index 0000000..fde79aa
--- /dev/null
+++ b/pdf/fpdf/doc/addpage.htm
@@ -0,0 +1,56 @@
+
+
+
+
+AddPage
+
+
+
+
AddPage
+AddPage([string orientation [, mixed size]])
+
Description
+Adds a new page to the document. If a page is already present, the Footer() method is called
+first to output the footer. Then the page is added, the current position set to the top-left
+corner according to the left and top margins, and Header() is called to display the header.
+
+The font which was set before calling is automatically restored. There is no need to call
+SetFont() again if you want to continue with the same font. The same is true for colors and
+line width.
+
+The origin of the coordinate system is at the top-left corner and increasing ordinates go
+downwards.
+
Parameters
+
+
orientation
+
+Page orientation. Possible values are (case insensitive):
+
+
P or Portrait
+
L or Landscape
+
+The default value is the one passed to the constructor.
+
+
size
+
+Page size. It can be either one of the following values (case insensitive):
+
+
A3
+
A4
+
A5
+
Letter
+
Legal
+
+or an array containing the width and the height (expressed in user unit).
+
+The default value is the one passed to the constructor.
+