setColumns() public method

Set columns
public setColumns ( $value = 1 ) : RichText
$value int
return RichText
Esempio n. 1
0
 /**
  * @expectedException \Exception
  * expectedExceptionMessage Number of columns should be 1-16
  */
 public function testColumnsException()
 {
     $object = new RichText();
     $object->setColumns(1000);
 }