setColumns() 공개 메소드

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