PhpOffice\PhpPresentation\Shape\Chart\Series::getDlblNumFormat PHP Method

getDlblNumFormat() public method

Get Data Label NumFormat
public getDlblNumFormat ( ) : string
return string
    public function getDlblNumFormat()
    {
        return $this->DlblNumFormat;
    }

Usage Example

示例#1
0
 public function testDataLabelNumFormat()
 {
     $object = new Series();
     $this->assertEmpty($object->getDlblNumFormat());
     $this->assertFalse($object->hasDlblNumFormat());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Series', $object->setDlblNumFormat('#%'));
     $this->assertEquals('#%', $object->getDlblNumFormat());
     $this->assertTrue($object->hasDlblNumFormat());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Series', $object->setDlblNumFormat());
     $this->assertEmpty($object->getDlblNumFormat());
     $this->assertFalse($object->hasDlblNumFormat());
 }