| |
Name |
Description |
|
AdjustEditorHeight
|
This method will reset the control's height so that the scrollbar is not needed to show the invisible/clipped content, rather expand or shrink the editor's height based on the visible content. |
|
AdjustEditorSize
|
This method will resize the control so that the scrollbar is not needed to show the invisible/clipped content, rather expand or shrink the editor size based on the visible content. |
|
AdjustEditorWidth
|
This method will reset the control's width so that the scrollbar is not needed to show the invisible/clipped content, rather expand or shrink the editor's width based on the visible content. |
|
CheckSpelling
|
Pops up the Spell Checker dialog for checking spelling. |
|
EmbedImages
|
Embeds the images. |
|
ExecCommand
|
Wrapper around execCommand method to execute command |
|
Focus
|
Focus to the editor. |
|
GetBodyText
|
Gets the body text. |
|
GetCaretIndexInHtml
|
Get the sequential Caret index in the html. |
|
GetCaretIndexInText
|
Get the sequential Caret index in the text if the body. |
|
GetCaretPosition
|
Gets the caret position. |
|
GetEditorContentXML
|
Get XML representation of the BodyHtml or DocumentHtml property value. |
|
GetImageSrcs
|
Get a string array of all unique Image Sources in the body Html. This is the collection of the value of src attribute of all <img tags in the body html. |
|
GetLinkHrefs
|
Get a string array of all unique href links in the body Html. This is the collection of the value of href attribute of the <a tags in the body html. |
|
GetPlainText
|
Gets the plain text. |
|
GetScrollPosition
|
Gets the scroll position. |
|
GetSelectedHTML
|
Get the selected HTML string of the displayed HTML Content. |
|
GetSelectedText
|
Get the selected text of the displayed HTML Content. |
|
GetSelectedTextStartIndex
|
Gets the index of the begining character of the selected text. This method is exactly same method as GetCaretIndexInText method. |
|
GetTextEditor
|
Gets the instance of the internal text editor which is shown when EditSource property is set to true. |
|
InsertHtml
|
This method will insert any HTML Text of String data type at the CARET POSITION without loosing the focus. In fact, this method is giving you the 100% full programming control to use your own html insert button and insert your desired html at the caret. |
|
InsertHtmlBetweenHead
|
Inserts the HTML between head tag. |
|
InsertHtmlBetweenHead
|
Inserts the HTML between head tag. |
|
InsertInputTextField
|
This method will insert an Input Textfield at the cursor position. |
|
InsertScript
|
If you find that some html insertion is not working with InsertHtml method then you can try using this method. Specially if you are trying to insert JavaScript for example, InsertHtml("<script language=JavaScript> var x=5; </script>"); then it may not work and thats why we have implemented this special method. For the mentioned string, if you use this method like InsertScript("<script language=JavaScript> var x=5; </script>"); then it will work. This method will insert any HTML Text of String data type at the CARET POSITION without loosing the focus. If you find that InsertHtml is working good for you, then it is not recommended that you use this method. |
|
InsertText
|
This method will insert any text of String data type at the caret position. |
|
RemoveHtmlFromHead
|
Removes the HTML from head. |
|
RemoveHtmlFromHead
|
Removes the HTML from head. |
|
SaveEditorContentAsXml
|
Save BodyHtml or DocumentHtml as XML file. |
|
Search
|
Overloaded. Pops up the Search dialog for searching a text within the editor. |
|
SelectText
|
Selects the text within the editor. |
|
SetBodyText
|
Sets the body text. |
|
SetCaretPosition
|
Overloaded. Sets the caret position. |
|
SetScrollPosition
|
Overloaded. Sets the scroll position. |