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
예제 #1
0
 /**
  * Test get/set hash index
  */
 public function testSetGetHashIndex()
 {
     $value = md5(rand(1, 100));
     $object = new Alignment();
     $object->setHashIndex($value);
     $this->assertEquals($value, $object->getHashIndex());
 }