Click or drag to resize
KaxEditorText Property
Gets the text content of the KaxEditor control without the HTML markup.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public string Text { 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