getCaption() 공개 메소드

public getCaption ( ) : string
리턴 string caption text. Default is "Rate It:".
예제 #1
0
 /**
  * @param string caption text
  */
 public function setCaption($value)
 {
     if (parent::getCaption() === $value) {
         return;
     }
     parent::setCaption($value);
     // if it's an active control, this should not be needed.
     $this->callClientFunction('setCaption', $value);
 }