D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
novonote_ant
/
adm
/
phpoffice
/
phpword
/
Element
/
Filename :
Ruby.php
back
Copy
<?php /** * This file is part of PHPWord - A pure PHP library for reading and writing * word processing documents. * * PHPWord is free software distributed under the terms of the GNU Lesser * General Public License version 3 as published by the Free Software Foundation. * * For the full copyright and license information, please read the LICENSE * file that was distributed with this source code. For the full list of * contributors, visit https://github.com/PHPOffice/PHPWord/contributors. * * @see https://github.com/PHPOffice/PHPWord * * @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3 */ namespace PhpOffice\PhpWord\Element; use PhpOffice\PhpWord\ComplexType\RubyProperties; /** * Ruby element. * * @see https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.wordprocessing.ruby?view=openxml-3.0.1 */ class Ruby extends AbstractElement { /** * Ruby properties. * * @var RubyProperties */ protected $properties; /** * Ruby text run. * * @var TextRun */ protected $rubyTextRun; /** * Ruby base text run. * * @var TextRun */ protected $baseTextRun; /** * Create a new Ruby Element. */ public function __construct(TextRun $baseTextRun, TextRun $rubyTextRun, RubyProperties $properties) { $this->baseTextRun = $baseTextRun; $this->rubyTextRun = $rubyTextRun; $this->properties = $properties; } /** * Get base text run. */ public function getBaseTextRun(): TextRun { return $this->baseTextRun; } /** * Set the base text run. */ public function setBaseTextRun(TextRun $textRun): self { $this->baseTextRun = $textRun; return $this; } /** * Get ruby text run. */ public function getRubyTextRun(): TextRun { return $this->rubyTextRun; } /** * Set the ruby text run. */ public function setRubyTextRun(TextRun $textRun): self { $this->rubyTextRun = $textRun; return $this; } /** * Get ruby properties. */ public function getProperties(): RubyProperties { return $this->properties; } /** * Set the ruby properties. */ public function setProperties(RubyProperties $properties): self { $this->properties = $properties; return $this; } }