PhpOffice\PhpPresentation\Shape\RichText\Paragraph::getHashIndex PHP Метод

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

Note that this index may vary during script execution! Only reliable moment is while doing a write of a workbook and when changes are not allowed.
public getHashIndex ( ) : string
Результат string Hash index
    public function getHashIndex()
    {
        return $this->hashIndex;
    }

Usage Example

Пример #1
0
 /**
  * Test get/set hashIndex
  */
 public function testHashIndex()
 {
     $object = new Paragraph();
     $value = rand(1, 100);
     $object->setHashIndex($value);
     $this->assertEquals($value, $object->getHashIndex());
 }