PhpOffice\PhpPresentation\Shape\Comment::getHeight PHP 메소드

getHeight() 공개 메소드

Comment has not height
public getHeight ( ) : null
리턴 null
    public function getHeight()
    {
        return null;
    }

Usage Example

예제 #1
0
 public function testGetSetHeightAndWidtg()
 {
     $object = new Comment();
     $this->assertNull($object->getHeight());
     $this->assertNull($object->getWidth());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Comment', $object->setHeight(1));
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Comment', $object->setWidth(1));
     $this->assertNull($object->getHeight());
     $this->assertNull($object->getWidth());
 }