Gets or sets a string containing the currently selected text.

Syntax

public string Text { get; set; }

Examples

The following example uses Text property to set a string containing the currently selected text. The text in this case is "TX Text Control".

textControl1.Text = "TX Text Control";

TXTextControl.Selection mySel = new TXTextControl.Selection(3, 4);

mySel.Bold   = true;
mySel.Italic = true;

textControl1.Selection = mySel;

Limitations

Runtime only.