Concept Framework 2.2 documentation Contents | Index

RTextView.AddText

Name Type Access Version Deprecated
AddText function public version 1.0 no

Prototype:
public function AddText(text);

Parameters:
text      a string containing the text that needs to be added to the view

Description:
Adds text to a text view. This is a convenient alternative to the Text property minimizing the network flow.

Example:
	Memo.AddText("Joe ");
	Memo.AddText("Black !");

	// this will be the equivalent of
	Memo.Text += "Joe ";
	Memo.Text += "Black ";

Returns:
This function returns the added text.

Documented by Eduard Suica, generation time: Sun Jan 27 18:15:09 2013 GMT(c)2013 Devronium Applications