Revit 2025.3 API
Formatted |
Returns a substring of the text in a plain text form. The start and end of the substring is identified
by a given TextRange.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public string GetPlainText( TextRange textRange )
Public Function GetPlainText ( textRange As TextRange ) As String
public: String^ GetPlainText( TextRange^ textRange )
member GetPlainText : textRange : TextRange -> string
Parameters
Return Value
StringThe substring of the text in a plain text form.

Exception | Condition |
---|---|
ArgumentException | This start index of this text range is not within the text range identifying the entire text. -or- The end of this text range is not within the text range identifying the entire text. |
ArgumentNullException | A non-optional argument was null |
See Also