PhpOffice\PhpPresentation\Shape\RichText\TextElement::getFont PHP 메소드

getFont() 공개 메소드

Get font
public getFont ( ) : Font
리턴 PhpOffice\PhpPresentation\Style\Font
    public function getFont()
    {
        return null;
    }

Usage Example

예제 #1
0
 public function testFont()
 {
     $object = new TextElement();
     $this->assertNull($object->getFont());
 }