Static
$tStatic
nextGets or sets the vertical alignment of the formatted text in the owning shape.
[[InvalidEnumArgumentException]] The specified value is not defined in the [[VerticalTextAlignment]] enumeration.
Creates a new [[FormattedText]] that is a copy of this one.
This should be used if the same formatted text needs to be used in multiple shapes. The FormattedText class can only exist as the [[WorksheetShapeWithText.text]] of one shape at a time. If the FormattedText is already the text of a shape, and needs to be set as the text of another shape, clone the FormattedText and set the returned clone as text of the shape.
The cloned FormattedText only takes its original configuration for this instance. If this instance is cloned and than changed, the clone will not be changed as well; it will remain as it was when it was cloned.
Gets the font which controls the formatting properties in the string from the specified start index to the end of the string.
If the start index is greater than or equal to the length of the unformatted string, no exception will be thrown. It will be thrown later when one of the formatting properties of the returned [[FormattedTextFont]] is set.
[[ArgumentOutOfRangeException]] 'startIndex' is less than zero.
The index of the first character the returned font controls.
Gets the font which controls the formatting properties in the string from the specified start index for the specified number of characters.
If the start index is greater than or equal to the length of the unformatted string, no exception will be thrown. It will be thrown later when one of the formatting properties of the returned [[FormattedTextFont]] is set.
[[ArgumentOutOfRangeException]] 'startIndex' is less than zero.
[[ArgumentOutOfRangeException]] 'length' is less than one. A zero length string cannot be controlled by a formatting font.
The index of the first character the returned font controls.
The number of characters after the start index controlled by the returned font.
Gets the paragraph at the specified zero-based index.
[[ArgumentOutOfRangeException]] 'index' is less than zero or greater than or equal to the number of paragraphs in the collection.
The zero-based index of the paragraph to get.
Gets the paragraphs in the formatted text.
Static
compareStatic
compareStatic
equalsStatic
equalsStatic
getStatic
getStatic
getStatic
reference
Represents text with multiple paragraphs and mixed formatting in a shape.
The formatting of the string is controlled in a similar fashion as it would be in Microsoft Excel. In Excel, the user must select a portion of the text and set the various formatting properties of that selected text.
With the FormattedText, a portion of the text is "selected" by calling either [[getFont]] or [[getFont]]. Formatting properties are then set on the returned [[FormattedTextFont]] and all characters in the font's selection range are given these properties.
Getting the formatting properties of a [[FormattedTextFont]] will return the formatting of the first character in font's selection range.
See
[[WorksheetShapeWithText.text]]