Text
extends AbstractElement
in package
Text element.
Table of Contents
Properties
- $collectionRelation : bool
- Is part of collection; true for Title, Footnote, Endnote, Chart, and Comment.
- $commentsRangeEnd : Comments
- The end position for the linked comments.
- $commentsRangeStart : Comments
- The start position for the linked comments.
- $docPart : string
- Document part type: Section|Header|Footer|Footnote|Endnote.
- $docPartId : int
- Document part Id.
- $elementId : string
- Unique Id for element.
- $elementIndex : int
- Index of element in the elements collection (start with 1).
- $fontStyle : Font|string
- Text style.
- $mediaRelation : bool
- Has media relation flag; true for Link, Image, and Object.
- $paragraphStyle : Paragraph|string
- Paragraph style.
- $phpWord : PhpWord|null
- PhpWord object.
- $relationId : int
- Relation Id.
- $sectionId : int
- Section Id.
- $text : string|null
- Text content.
- $nestedLevel : int
- Depth of table container nested level; Primarily used for RTF writer/reader.
- $parent : null|AbstractElement
- A reference to the parent.
- $parentContainer : string
- Parent container type.
- $trackChange : TrackChange
- changed element info.
Methods
- __construct() : mixed
- Create a new Text Element.
- getCommentRangeEnd() : Comment
- Get comment end.
- getCommentRangeStart() : Comment
- Get comment start.
- getCommentsRangeEnd() : Comments
- Get comments end.
- getCommentsRangeStart() : Comments
- Get comments start.
- getDocPart() : string
- Get doc part.
- getDocPartId() : int
- Get doc part Id.
- getElementId() : string
- Get element unique ID.
- getElementIndex() : int
- Get element index.
- getFontStyle() : Font|string
- Get Text style.
- getNestedLevel() : int
- Get nested level.
- getParagraphStyle() : Paragraph|string
- Get Paragraph style.
- getParent() : null|AbstractElement
- Get parent element.
- getPhpWord() : PhpWord|null
- Get PhpWord.
- getRelationId() : int
- Get relation Id.
- getSectionId() : int
- Get section number.
- getText() : string|null
- Get Text content.
- getTrackChange() : TrackChange
- Gets the trackChange information.
- isInSection() : bool
- Check if element is located in Section doc part (as opposed to Header/Footer).
- setChangeInfo() : void
- Set changed.
- setCommentRangeEnd() : void
- Set comment end.
- setCommentRangeStart() : void
- Set comment start.
- setDocPart() : void
- Set doc part.
- setElementId() : void
- Set element unique ID from 6 first digit of md5.
- setElementIndex() : void
- Set element index.
- setFontStyle() : Font|string
- Set Text style.
- setParagraphStyle() : Paragraph|string
- Set Paragraph style.
- setParentContainer() : void
- Set parent container.
- setPhpWord() : void
- Set PhpWord as reference.
- setRelationId() : void
- Set relation Id.
- setText() : self
- Set text content.
- setTrackChange() : void
- Sets the trackChange information.
- setEnumVal() : null|string
- Set enum value.
- setNewStyle() : mixed
- Set new style value.
- getMediaPart() : string
- Return media element (image, object, link) container name.
- setCollectionRelation() : void
- Set relation Id for elements that will be registered in the Collection subnamespaces.
- setMediaRelation() : void
- Set relation Id for media elements (link, image, object; legacy of OOXML).
Properties
$collectionRelation
Is part of collection; true for Title, Footnote, Endnote, Chart, and Comment.
protected
bool
$collectionRelation
= false
$commentsRangeEnd
The end position for the linked comments.
protected
Comments
$commentsRangeEnd
$commentsRangeStart
The start position for the linked comments.
protected
Comments
$commentsRangeStart
$docPart
Document part type: Section|Header|Footer|Footnote|Endnote.
protected
string
$docPart
= 'Section'
Used by textrun and cell container to determine where the element is located because it will affect the availability of other element, e.g. footnote will not be available when $docPart is header or footer.
$docPartId
Document part Id.
protected
int
$docPartId
= 1
For header and footer, this will be = ($sectionId - 1) * 3 + $index because the max number of header/footer in every page is 3, i.e. AUTO, FIRST, and EVEN (AUTO = ODD)
$elementId
Unique Id for element.
protected
string
$elementId
$elementIndex
Index of element in the elements collection (start with 1).
protected
int
$elementIndex
= 1
$fontStyle
Text style.
protected
Font|string
$fontStyle
$mediaRelation
Has media relation flag; true for Link, Image, and Object.
protected
bool
$mediaRelation
= false
$paragraphStyle
Paragraph style.
protected
Paragraph|string
$paragraphStyle
$phpWord
PhpWord object.
protected
PhpWord|null
$phpWord
$relationId
Relation Id.
protected
int
$relationId
$sectionId
Section Id.
protected
int
$sectionId
$text
Text content.
protected
string|null
$text
$nestedLevel
Depth of table container nested level; Primarily used for RTF writer/reader.
private
int
$nestedLevel
= 0
0 = Not in a table; 1 = in a table; 2 = in a table inside another table, etc.
$parent
A reference to the parent.
private
null|AbstractElement
$parent
$parentContainer
Parent container type.
private
string
$parentContainer
$trackChange
changed element info.
private
TrackChange
$trackChange
Methods
__construct()
Create a new Text Element.
public
__construct([string $text = null ][, mixed $fontStyle = null ][, mixed $paragraphStyle = null ]) : mixed
Parameters
- $text : string = null
- $fontStyle : mixed = null
- $paragraphStyle : mixed = null
getCommentRangeEnd()
Get comment end.
public
getCommentRangeEnd() : Comment
Return values
CommentgetCommentRangeStart()
Get comment start.
public
getCommentRangeStart() : Comment
Return values
CommentgetCommentsRangeEnd()
Get comments end.
public
getCommentsRangeEnd() : Comments
Return values
CommentsgetCommentsRangeStart()
Get comments start.
public
getCommentsRangeStart() : Comments
Return values
CommentsgetDocPart()
Get doc part.
public
getDocPart() : string
Return values
stringgetDocPartId()
Get doc part Id.
public
getDocPartId() : int
Return values
intgetElementId()
Get element unique ID.
public
getElementId() : string
Return values
stringgetElementIndex()
Get element index.
public
getElementIndex() : int
Return values
intgetFontStyle()
Get Text style.
public
getFontStyle() : Font|string
Return values
Font|stringgetNestedLevel()
Get nested level.
public
getNestedLevel() : int
Return values
intgetParagraphStyle()
Get Paragraph style.
public
getParagraphStyle() : Paragraph|string
Return values
Paragraph|stringgetParent()
Get parent element.
public
getParent() : null|AbstractElement
Return values
null|AbstractElementgetPhpWord()
Get PhpWord.
public
getPhpWord() : PhpWord|null
Return values
PhpWord|nullgetRelationId()
Get relation Id.
public
getRelationId() : int
Return values
intgetSectionId()
Get section number.
public
getSectionId() : int
Return values
intgetText()
Get Text content.
public
getText() : string|null
Return values
string|nullgetTrackChange()
Gets the trackChange information.
public
getTrackChange() : TrackChange
Return values
TrackChangeisInSection()
Check if element is located in Section doc part (as opposed to Header/Footer).
public
isInSection() : bool
Return values
boolsetChangeInfo()
Set changed.
public
setChangeInfo(string $type, string $author[, null|DateTime|int $date = null ]) : void
Parameters
- $type : string
-
INSERTED|DELETED
- $author : string
- $date : null|DateTime|int = null
-
allways in UTC
setCommentRangeEnd()
Set comment end.
public
setCommentRangeEnd(Comment $value) : void
Parameters
- $value : Comment
setCommentRangeStart()
Set comment start.
public
setCommentRangeStart(Comment $value) : void
Parameters
- $value : Comment
setDocPart()
Set doc part.
public
setDocPart(string $docPart[, int $docPartId = 1 ]) : void
Parameters
- $docPart : string
- $docPartId : int = 1
setElementId()
Set element unique ID from 6 first digit of md5.
public
setElementId() : void
setElementIndex()
Set element index.
public
setElementIndex(int $value) : void
Parameters
- $value : int
setFontStyle()
Set Text style.
public
setFontStyle([array<string|int, mixed>|Font|string $style = null ][, array<string|int, mixed>|Paragraph|string $paragraphStyle = null ]) : Font|string
Parameters
- $style : array<string|int, mixed>|Font|string = null
- $paragraphStyle : array<string|int, mixed>|Paragraph|string = null
Return values
Font|stringsetParagraphStyle()
Set Paragraph style.
public
setParagraphStyle([array<string|int, mixed>|Paragraph|string $style = null ]) : Paragraph|string
Parameters
- $style : array<string|int, mixed>|Paragraph|string = null
Return values
Paragraph|stringsetParentContainer()
Set parent container.
public
setParentContainer(self $container) : void
Passed parameter should be a container, except for Table (contain Row) and Row (contain Cell)
Parameters
- $container : self
setPhpWord()
Set PhpWord as reference.
public
setPhpWord([PhpWord|null $phpWord = null ]) : void
Parameters
- $phpWord : PhpWord|null = null
setRelationId()
Set relation Id.
public
setRelationId(int $value) : void
Parameters
- $value : int
setText()
Set text content.
public
setText(string $text) : self
Parameters
- $text : string
Return values
selfsetTrackChange()
Sets the trackChange information.
public
setTrackChange(TrackChange $trackChange) : void
Parameters
- $trackChange : TrackChange
setEnumVal()
Set enum value.
protected
setEnumVal([null|string $value = null ][, array<string|int, string> $enum = [] ][, null|string $default = null ]) : null|string
Parameters
- $value : null|string = null
- $enum : array<string|int, string> = []
- $default : null|string = null
Tags
Return values
null|stringsetNewStyle()
Set new style value.
protected
setNewStyle(mixed $styleObject[, null|array<string|int, mixed>|string|Style $styleValue = null ][, bool $returnObject = false ]) : mixed
Parameters
- $styleObject : mixed
-
Style object
- $styleValue : null|array<string|int, mixed>|string|Style = null
-
Style value
- $returnObject : bool = false
-
Always return object
getMediaPart()
Return media element (image, object, link) container name.
private
getMediaPart() : string
Return values
string —section|headerx|footerx|footnote|endnote
setCollectionRelation()
Set relation Id for elements that will be registered in the Collection subnamespaces.
private
setCollectionRelation() : void
setMediaRelation()
Set relation Id for media elements (link, image, object; legacy of OOXML).
private
setMediaRelation() : void
- Image element needs to be passed to Media object
- Icon needs to be set for Object element