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

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

Set Format Code
public setFormatCode ( string $value = '' ) : Axis
$value string
Результат Axis
    public function setFormatCode($value = '')
    {
        $this->formatCode = $value;
        return $this;
    }

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());
 }