Gets the text content of the KaxEditor control without the HTML markup.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string Text { get; set; }
Public Property Text As String
Get
Set
public:
property String^ Text {
String^ get ();
void set (String^ value);
}
member Text : string with get, set
Property Value
Type:
String
The text displayed in the KaxEditor without the HTML markup. The default is
string.Empty.
Remarks
The text returned by this property contains no HTML markup. If only the HTML
markup in the text is needed use the Html property.
You can set the text content of the KaxEditor by using the
Html property or inline between its opening and closing
tags. In this case setting the Html property in the code
behind will override the inline content.
Examples
For an example see the Html property.
See Also