- トップ
- > メソッド
- > g
- > getStringHeight
getStringHeight
メソッド | public |
---|---|
実装 | (記載なし) |
Multicell()メソッドで文字列を出力する際に必要な高さを求める。 Generally, if you want to know the exact height for a block of content you can use the following alternative technique:
- 書式
-
getStringHeight( $w, $txt, $reseth, $autopadding, $cellpadding, $border )
- 戻り値
-
float $txt要素をMulticell()メソッドで出力するのに必要な高さ。
- 要素(パラメータ)
-
float $w セルの幅。 0であれば、頁の右マージンまで拡張される。
string $txt 高さを求めたい文字列
bool $reseth false trueであれば、最後のセルの高さをリセットする。
bool $autoppadding true trueであれば、uses internal padding and automatically adjust it to account for line width (default true).
float $cellpadding '' セル内の余白。 空('')であれば、デフォルトの余白が使用される。
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)))