Paragraph.GetText

string Paragraph.GetText ( 

string ObjectName )

Example 1

readme_text = Paragraph.GetText("Readme");

Gets the text that is currently displayed in the paragraph object named "Readme" and stores it in a variable named "readme_text."

Example 2

strLicense = Paragraph.GetText("License Agreement");

Gets the text in the "License Agreement" paragraph object and stores it in a variable called "strLicense."

Tip: Starting a variable name with "str" is a technique that programmers use to help themselves remember that a variable contains a string.

See also:  Related Actions