1<?php
2
3namespace Mpdf\Tag;
4
5class NewColumn extends Tag
6{
7
8	public function open($attr, &$ahtml, &$ihtml)
9	{
10		$this->mpdf->ignorefollowingspaces = true;
11		$this->mpdf->NewColumn();
12		$this->mpdf->ColumnAdjust = false; // disables all column height adjustment for the page.
13	}
14
15	public function close(&$ahtml, &$ihtml)
16	{
17	}
18}
19