Share via


TextRange.Runs Method

Returns a TextRange object that represents the specified subset of text runs. A text run consists of a range of characters that share the same font attributes.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
Function Runs ( _
    Start As Integer, _
    Length As Integer _
) As TextRange
'Usage
Dim instance As TextRange
Dim Start As Integer
Dim Length As Integer
Dim returnValue As TextRange

returnValue = instance.Runs(Start, Length)
TextRange Runs(
    int Start,
    int Length
)

Parameters

  • Start
    Type: System.Int32
    The first run in the returned range.
  • Length
    Type: System.Int32
    The number of runs to be returned.

Return Value

Type: Microsoft.Office.Interop.PowerPoint.TextRange

Remarks

If both Start and Length are omitted, the returned range starts with the first run and ends with the last paragraph in the specified range.

If Start is specified but Length is omitted, the returned range contains one run.

If Length is specified but Start is omitted, the returned range starts with the first run in the specified range.

If Start is greater than the number of runs in the specified text, the returned range starts with the last run in the specified range.

If Length is greater than the number of runs from the specified starting run to the end of the text, the returned range contains all those runs.

A run consists of all characters from the first character after a font change to the second-to-last character that has the same font attributes. For example, consider the following sentence:

This italic word is not bold.

In the preceding sentence, the first run consists of the word "This" only if the space after the word "This" isn't formatted as italic (if the space is italic, the first run is only the first three characters, or "Thi"). Likewise, the second run contains the word "italic" only if the space after the word is formatted as italic.

For information about counting or looping through the runs in a text range, see the TextRangeobject.

See Also

Reference

TextRange Interface

TextRange Members

Microsoft.Office.Interop.PowerPoint Namespace