Carbon_Fields\Field\Textarea_Field::set_height PHP Method

set_height() public method

Deprecated in favor of set_rows()
Deprecation:
public set_height ( integer $height = 170 )
$height integer Height (in pixels)
    public function set_height($height = 170)
    {
        $min_height = 28;
        $this->height = max(intval($height), $min_height);
        return $this;
    }