PhpOffice\PhpPresentation\Style\Bullet::getBulletNumericStartAt PHP Method

getBulletNumericStartAt() public method

Get bullet numeric start at
public getBulletNumericStartAt ( ) : string
return string
    public function getBulletNumericStartAt()
    {
        return $this->bulletNumericStartAt;
    }

Usage Example

示例#1
0
 /**
  * Test get/set bullet numeric start at
  */
 public function testSetGetBulletNumericStartAt()
 {
     $object = new Bullet();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Bullet', $object->setBulletNumericStartAt());
     $this->assertEquals(1, $object->getBulletNumericStartAt());
     $value = rand(1, 100);
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Bullet', $object->setBulletNumericStartAt($value));
     $this->assertEquals($value, $object->getBulletNumericStartAt());
 }