IJodit

plugins/delete.IJodit

execCommand

execCommand(command): void

Delete plugin: Remove selected text

Parameters

Name Type
command "delete"

Returns

void

Defined in

src/plugins/delete/interface.ts#16

execCommand(command): void

Bold plugin: Make selected text bold

Parameters

Name Type
command "bold"

Returns

void

Defined in

src/plugins/bold/interface.ts#16

execCommand(command): void

Bold plugin: Make selected text style italic

Parameters

Name Type
command "italic"

Returns

void

Defined in

src/plugins/bold/interface.ts#21

execCommand(command): void

Bold plugin: Make selected text style underline

Parameters

Name Type
command "underline"

Returns

void

Defined in

src/plugins/bold/interface.ts#26

execCommand(command): void

Bold plugin: Make selected text style strikethrough

Parameters

Name Type
command "strikethrough"

Returns

void

Defined in

src/plugins/bold/interface.ts#31

execCommand(command): void

Bold plugin: Wrap selected text in SUB tag

Parameters

Name Type
command "subscript"

Returns

void

Defined in

src/plugins/bold/interface.ts#36

execCommand(command): void

Bold plugin: Wrap selected text in SUP tag

Parameters

Name Type
command "superscript"

Returns

void

Defined in

src/plugins/bold/interface.ts#41

execCommand(command, query?, next?): void

Search plugin: Runs a text search and highlights found results

Parameters

Name Type
command "search"
query? string
next? boolean

Returns

void

Defined in

src/plugins/search/interface.ts#42

execCommand(command, query?): void

Search plugin: Open search form

Parameters

Name Type
command "openSearchDialog"
query? string

Returns

void

Defined in

src/plugins/search/interface.ts#47

execCommand(command, query?, replace?): void

Search plugin: Open replace form

Parameters

Name Type
command "openReplaceDialog"
query? string
replace? string

Returns

void

Defined in

src/plugins/search/interface.ts#52

execCommand(command): void

Backspace plugin: Deletes the next character or selected text.

Parameters

Name Type
command "deleteButton"

Returns

void

Defined in

src/plugins/backspace/interface.ts#39

execCommand(command): void

Backspace plugin: Deletes the previous character or selected text.

Parameters

Name Type
command "backspaceButton"

Returns

void

Defined in

src/plugins/backspace/interface.ts#44

execCommand(command): void

Backspace plugin: Deletes the next word or selected text.

Parameters

Name Type
command "deleteWordButton"

Returns

void

Defined in

src/plugins/backspace/interface.ts#49

execCommand(command): void

Backspace plugin: Deletes the previous word or selected text.

Parameters

Name Type
command "backspaceWordButton"

Returns

void

Defined in

src/plugins/backspace/interface.ts#54

execCommand(command): void

Backspace plugin: Deletes the next sentence or selected text.

Parameters

Name Type
command "deleteSentenceButton"

Returns

void

Defined in

src/plugins/backspace/interface.ts#59

execCommand(command): void

Backspace plugin: Deletes the previous sentence or selected text.

Parameters

Name Type
command "backspaceSentenceButton"

Returns

void

Defined in

src/plugins/backspace/interface.ts#64


registerCommand

registerCommand(command, callback): void

Parameters

Name Type
command "search"
callback (command: "search", openReplaceDialogquery?: string, next?: boolean) => void

Returns

void

Defined in

jodit/src/plugins/search/interface.ts:58

registerCommand(command, callback): void

Parameters

Name Type
command "openSearchDialog"
callback (command: "openSearchDialog", query?: string) => void

Returns

void

Defined in

jodit/src/plugins/search/interface.ts:67

registerCommand(command, callback): void

Parameters

Name Type
command "openReplaceDialog"
callback (command: "openReplaceDialog", query?: string, replace?: string) => void

Returns

void

Defined in

jodit/src/plugins/search/interface.ts:72