EIOS/inc/fpdf/doc/acceptpagebreak.htm

66 lines
1.8 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1251">
<title>AcceptPageBreak</title>
<link type="text/css" rel="stylesheet" href="fpdf.css">
</head>
<body>
<h1>AcceptPageBreak</h1>
<code><b>boolean</b> AcceptPageBreak()</code>
<h4 class='st'>Версия</h4>
1.4
<h4 class='st'>Описание</h4>
Всякий раз, когда встречается условие разрыва страниц, вызывается этот метод и
происходит или не происходит разрыв страниц в зависимости от возвращенного значения.
По умолчанию возвращается значение согласно режиму, выбранному с помощью SetAutoPageBreak().
<BR>
Этот метод вызывается автоматически и не должен вызываться из приложения.
<h4 CLASS='st'>Пример</h4>
Этот метод переопределен в наследующем классе для того, чтоб получить 3 колонки.
<div class="doc-source">
<pre><code>class PDF extends FPDF
{
var $col=0;
function SetCol($col)
{
//Устанавливаем положение колонки
$this-&gt;col=$col;
$x=10+$col*65;
$this-&gt;SetLeftMargin($x);
$this-&gt;SetX($x);
}
function AcceptPageBreak()
{
if($this-&gt;col&lt;2)
{
//Переходим к следующей колонке
$this-&gt;SetCol($this-&gt;col+1);
$this-&gt;SetY(10);
return false;
}
else
{
//Возвращаемся к первой колонке и производим разрыв страницы
$this-&gt;SetCol(0);
return true;
}
}
}
$pdf=new PDF();
$pdf-&gt;AddPage();
$pdf-&gt;SetFont('Arial','',12);
for($i=1;$i&lt;=300;$i++)
$pdf-&gt;Cell(0,5,&quot;Line $i&quot;,0,1);
$pdf-&gt;Output();</code></pre>
</div>
<h4 class='st'>См. также</h4>
<a href="setautopagebreak.htm">SetAutoPageBreak()</a>.
<hr style="margin-top:1.5em">
<div style="text-align:center"><a href="index.htm">Оглавление</a></div>
</body>
</html>