PhpOffice\PhpPresentation\Shape\Chart\Axis::getFormatCode PHP Метод

getFormatCode() публичный Метод

Get Format Code
public getFormatCode ( ) : string
Результат string
    public function getFormatCode()
    {
        return $this->formatCode;
    }

Usage Example

Пример #1
0
 public function testFormatCode()
 {
     $object = new Axis();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Axis', $object->setFormatCode());
     $this->assertEquals('', $object->getFormatCode());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Axis', $object->setFormatCode('AAAA'));
     $this->assertEquals('AAAA', $object->getFormatCode());
 }
All Usage Examples Of PhpOffice\PhpPresentation\Shape\Chart\Axis::getFormatCode