Carbon_Fields\Field\Textarea_Field::set_rows PHP Method

set_rows() public method

Change the number of rows of this field.
public set_rows ( integer $rows )
$rows integer Number of rows
    public function set_rows($rows = 0)
    {
        $this->rows = absint($rows);
        return $this;
    }