+
+ /**
+ * Orientacion de las nuevas paginas
+ * @var string $orientacion
+ * @access protected
+ */
+ var $_orientacion;
+
+ /**
+ * Class Constructor.
+ *
+ * @param string $orientacion Orientacion que tendran las nuevas paginas que
+ * esta clase genere.
+ *
+ * @return void
+ * @access public
+ */
+ function MECON_PDF_Texto($orientacion = null) {
+ $this->_orientacion = $orientacion;
+ }
+
+ /**
+ * Funcion que se encarga de crear las nuevas paginas.
+ *
+ * @param &Object $MARCO MECON_PDF_Marco
+ *
+ * @return void
+ * @access protected
+ */
+ function _newPage(&$MARCO) {
+ $tmp = ($this->_orientacion) ? $this->_orientacion :
+ $MARCO->getOrientation();
+ $MARCO->newPage($MARCO->tamanio, $tmp);
+ }