RichText.SetText

RichText.SetText ( 

string  ObjectName,

string  Text,

boolean RawRTF = true )

Example 1

-- Get the raw RTF text from "RichText1".
raw_object_text1 = RichText.GetText("RichText1", true);

-- Set "RichText2" object text to the first objects.
RichText.SetText("RichText2", raw_object_text1, true);

Gets the raw RTF text from the "RichText1" richtext object, and sets a second object called "RichText2" to its text from the variable "raw_object_text1".

See also:  Related Actions