SubDocument.text Property
In This Article
Gets the document’s text.
#Declaration
TypeScript
get text(): string
#Property Value
Type | Description |
---|---|
string | The document’s text. |
#Remarks
//Gets the whole text of the main sub-document
var mainSubDocumentText = richEdit.document.mainSubDocument.text;
Refer to the following section for more information: Access a Sub-Document.
See Also