nsISupports
Last changed in Gecko 1.7 nsISupportsArray getEmbeddedObjects(); |
nsIDOMNode insertAsCitedQuotation(in AString aQuotedText, in AString aCitation, in boolean aInsertHTML); |
nsIDOMNode insertAsQuotation(in AString aQuotedText); |
void insertTextWithQuotations(in DOMString aStringToInsert); |
void pasteAsCitedQuotation(in AString aCitation, in long aSelectionType); |
void pasteAsQuotation(in long aSelectionType); |
void rewrap(in boolean aRespectNewlines); |
void stripCites(); |
Get a list of IMG and OBJECT tags in the current document.
nsISupportsArray getEmbeddedObjects();
None.
An nsISupportsArray
containing the IMG and OBJECT tags of the current document.
Insert a string as quoted text (whose representation is dependent on the editor type), replacing the selected text (if any), including, if possible, a "cite" attribute.
nsIDOMNode insertAsCitedQuotation( in AString aQuotedText, in AString aCitation, in boolean aInsertHTML );
aQuotedText
aCitation
aInsertHTML
The nsIDOMNode
which was inserted.
Insert a string as quoted text (whose representation is dependent on the editor type), replacing the selected text (if any).
nsIDOMNode insertAsQuotation( in AString aQuotedText );
aQuotedText
The nsIDOMNode
which was inserted.
Inserts a plain text string at the current location, with special processing for lines beginning with ">", which will be treated as mail quotes and inserted as plain text quoted blocks. If the selection is not collapsed, the selection is deleted and the insertion takes place at the resulting collapsed selection.
void insertTextWithQuotations( in DOMString aStringToInsert );
aStringToInsert
Paste a string as quoted text, whose representation is dependent on the editor type, replacing the selected text (if any)
void pasteAsCitedQuotation( in AString aCitation, in long aSelectionType );
aCitation
aSelectionType
Paste the text in the OS clipboard at the cursor position, as a quotation (whose representation is dependent on the editor type), replacing the selected text (if any).
void pasteAsQuotation( in long aSelectionType );
aSelectionType
Rewrap the selected part of the document, re-quoting if necessary.
void rewrap( in boolean aRespectNewlines );
aRespectNewlines
Strip any citations in the selected part of the document.
void stripCites();
None.