Swift_Mime_Attachment::setSize PHP Method

setSize() public method

Set the file size of this attachment.
public setSize ( integer $size ) : Swift_Mime_Attachment
$size integer
return Swift_Mime_Attachment
    public function setSize($size)
    {
        $this->_setHeaderParameter('Content-Disposition', 'size', $size);
        return $this;
    }