TextField  >>

Text

テキスト文字列を出力する。
基点の座標から文字列を出力する。

publicメソッド、Version 1.0~

書式
Text( $x, $y, $txt, $fstroke, $fclip, $ffill, $border, $ln, $align, $fill, $link, $strech, $ignore_min_height, $calign, $valign, $rtloff )
戻り値

(なし)

パラメータ
float $x 基点のX座標
float $y 基点のY座標
string $txt 表示する文字列
int $fstroke false フォント・アウトラインの太さ (falseであれば、アウトラインなし)
bool $fclip false trueであれば、クリッピングモードになる。 クリッピングする場合、StartTransform()を実行して変換開始を宣言してからText()を使用する。 変換処理が終了する際にはStopTransform()を呼び出して、終了を宣言する必要がある。
bool $ffill true trueであれば、文字を塗る
mixed $border 0 Indicates if borders must be drawn around the cell. The value can be a number:
  • 0: no border (default)
  • 1: frame
or a string containing some or all of the following characters (in any order):
  • L: left
  • T: top
  • R: right
  • B: bottom
or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
int $ln 0 Indicates where the current position should go after the call. Possible values are:
  • 0: to the right (or left for RTL languages)
  • 1: to the beginning of the next line
  • 2: below
Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
string $align '' Allows to center or align the text. Possible values are:
  • L or empty string: left align (default value)
  • C: center
  • R: right align
  • J: justify
bool $fill false

trueであれば、背景を塗る。 falseであれば、透過する。

mixed $link '' URL or identifier returned by AddLink().
int $strech 0 font stretch mode:
  • 0 = disabled
  • 1 = horizontal scaling only if text is larger than cell width
  • 2 = forced horizontal scaling to fit cell width
  • 3 = character spacing only if text is larger than cell width
  • 4 = forced character spacing to fit cell width
General font stretching and scaling values will be preserved when possible.
bool $ignore_min_height false truであれば、高さの最小値を自動的に補正する
string $calign 'T' cell vertical alignment relative to the specified Y value. Possible values are:
  • T : cell top
  • A : font top
  • L : font baseline
  • D : font bottom
  • B : cell bottom
string $valign 'M' text vertical alignment inside the cell. Possible values are:
  • T : top
  • C : center
  • B : bottom
bool $rtloff false trueであれば、uses the page top-left corner as origin of axis for $x and $y initial position.
関連