PHPRtfLite::getProperty PHP Метод

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

gets rtf property
public getProperty ( string $name ) : string
$name string
Результат string
    public function getProperty($name)
    {
        return isset($this->_properties[$name]) ? $this->_properties[$name] : null;
    }

Usage Example

Пример #1
0
 /**
  * @covers PHPRtfLite::getProperty
  * @dataProvider provideSetProperty
  */
 public function testSetProperty($name, $timestamp, $expected)
 {
     $this->_rtf->setProperty($name, $timestamp);
     $this->assertEquals($expected, $this->_rtf->getProperty($name));
 }