コード例 #1
0
ファイル: FormatTest.php プロジェクト: phprtflite/phprtflite
 public function testGetContentWithTypeDotDash()
 {
     $borderFormat = new PHPRtfLite_Border_Format(1, '#888', PHPRtfLite_Border_Format::TYPE_DOTDASH);
     $colorTable = new PHPRtfLite_DocHead_ColorTable();
     $borderFormat->setColorTable($colorTable);
     $this->assertEquals('\\brdrdashd\\brdrw20\\brsp0\\brdrcf2', trim($borderFormat->getContent()));
 }
コード例 #2
0
ファイル: Border.php プロジェクト: sbogdanov108/db_to_text
 /**
  * sets border format for bottom border
  *
  * @param PHPRtfLite_Border_Format $borderFormat
  */
 public function setBorderBottom(PHPRtfLite_Border_Format $borderFormat)
 {
     $borderFormat->setColorTable($this->_rtf->getColorTable());
     $this->_borderBottom = $borderFormat;
 }