docs: support document internationalization #222
* docs: add English docuemnt #213 * docs: support document internationalization #222 --------- Co-authored-by: Hufe921 <huangyunfeihufe@hotmail.com>
This commit is contained in:
@@ -0,0 +1,745 @@
|
||||
# Execute Command
|
||||
|
||||
## How to Use
|
||||
|
||||
```javascript
|
||||
import Editor from "@hufe921/canvas-editor"
|
||||
|
||||
const instance = new Editor(container, <IElement[]>data, options)
|
||||
instance.command.commandName()
|
||||
```
|
||||
|
||||
## executeMode
|
||||
|
||||
Feature: Switch editor mode (Edit, Clean, Read only)
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeMode(editorMode: EditorMode)
|
||||
```
|
||||
|
||||
## executeCut
|
||||
|
||||
Feature: Cut
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeCut()
|
||||
```
|
||||
|
||||
## executeCopy
|
||||
|
||||
Feature: Copy
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeCopy()
|
||||
```
|
||||
|
||||
## executePaste
|
||||
|
||||
Feature: Paste
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executePaste()
|
||||
```
|
||||
|
||||
## executeSelectAll
|
||||
|
||||
Feature: Select all
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSelectAll()
|
||||
```
|
||||
|
||||
## executeBackspace
|
||||
|
||||
Feature: Forward delete
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeBackspace()
|
||||
```
|
||||
|
||||
## executeSetRange
|
||||
|
||||
Feature: Set selection
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSetRange(startIndex: number , endIndex: number)
|
||||
```
|
||||
|
||||
## executeUndo
|
||||
|
||||
Feature: Undo
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeUndo()
|
||||
```
|
||||
|
||||
## executeRedo
|
||||
|
||||
Feature: Redo
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeRedo()
|
||||
```
|
||||
|
||||
## executePainter
|
||||
|
||||
Feature: Format Brush - Copy style
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executePainter()
|
||||
```
|
||||
|
||||
## executeApplyPainterStyle
|
||||
|
||||
Feature: Format brush - Apply style
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeApplyPainterStyle()
|
||||
```
|
||||
|
||||
## executeFormat
|
||||
|
||||
Feature: Clear format
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeFormat()
|
||||
```
|
||||
|
||||
## executeFont
|
||||
|
||||
Feature: Set font
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeFont(font: string)
|
||||
```
|
||||
|
||||
## executeSize
|
||||
|
||||
Feature: Set font size
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSize(size: number)
|
||||
```
|
||||
|
||||
## executeSizeAdd
|
||||
|
||||
Feature: Increase the font size
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSizeAdd()
|
||||
```
|
||||
|
||||
## executeSizeMinus
|
||||
|
||||
Feature: Reduce the font size
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSizeMinus()
|
||||
```
|
||||
|
||||
## executeBold
|
||||
|
||||
Feature: Bold
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeBold()
|
||||
```
|
||||
|
||||
## executeItalic
|
||||
|
||||
Feature: Italic
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeItalic()
|
||||
```
|
||||
|
||||
## executeUnderline
|
||||
|
||||
Feature: Underline
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeUnderline()
|
||||
```
|
||||
|
||||
## executeStrikeout
|
||||
|
||||
Feature: Strikeout
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeStrikeout()
|
||||
```
|
||||
|
||||
## executeSuperscript
|
||||
|
||||
Feature: Superscript
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSuperscript()
|
||||
```
|
||||
|
||||
## executeSubscript
|
||||
|
||||
Feature: Subscript
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSubscript()
|
||||
```
|
||||
|
||||
## executeColor
|
||||
|
||||
Feature: Font color
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeColor()
|
||||
```
|
||||
|
||||
## executeHighlight
|
||||
|
||||
Feature: Highlight
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeHighlight()
|
||||
```
|
||||
|
||||
## executeTitle
|
||||
|
||||
Feature: Set title
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeTitle(TitleLevel | null)
|
||||
```
|
||||
|
||||
## executeList
|
||||
|
||||
Feature: Set list
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeList(listType: ListType | null, listStyle?: ListStyle)
|
||||
```
|
||||
|
||||
## executeRowFlex
|
||||
|
||||
Feature: Line alignment
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeRowFlex(rowFlex: RowFlex)
|
||||
```
|
||||
|
||||
## executeRowMargin
|
||||
|
||||
Feature: Line spacing
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeRowMargin(rowMargin: number)
|
||||
```
|
||||
|
||||
## executeInsertTable
|
||||
|
||||
Feature: Insert table
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeInsertTable(row: number, col: number)
|
||||
```
|
||||
|
||||
## executeInsertTableTopRow
|
||||
|
||||
Feature: Insert a row up
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeInsertTableTopRow()
|
||||
```
|
||||
|
||||
## executeInsertTableBottomRow
|
||||
|
||||
Feature: Insert a row down
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeInsertTableBottomRow()
|
||||
```
|
||||
|
||||
## executeInsertTableLeftCol
|
||||
|
||||
Feature: Insert a column to the left
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeInsertTableLeftCol()
|
||||
```
|
||||
|
||||
## executeInsertTableRightCol
|
||||
|
||||
Feature: Insert a column to the right
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeInsertTableRightCol()
|
||||
```
|
||||
|
||||
## executeDeleteTableRow
|
||||
|
||||
Feature: Deletes the current row
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeDeleteTableRow()
|
||||
```
|
||||
|
||||
## executeDeleteTableCol
|
||||
|
||||
Feature: Delete the current column
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeDeleteTableCol()
|
||||
```
|
||||
|
||||
## executeDeleteTable
|
||||
|
||||
Feature: Delete the table
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeDeleteTable()
|
||||
```
|
||||
|
||||
## executeMergeTableCell
|
||||
|
||||
Feature: Merge tables
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeMergeTableCell()
|
||||
```
|
||||
|
||||
## executeCancelMergeTableCell
|
||||
|
||||
Feature: Cancel the merge form
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeCancelMergeTableCell()
|
||||
```
|
||||
|
||||
## executeTableTdVerticalAlign
|
||||
|
||||
Feature: Table cell vertical alignment
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeTableTdVerticalAlign(payload: VerticalAlign)
|
||||
```
|
||||
|
||||
## executeTableBorderType
|
||||
|
||||
Feature: Table border type
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeTableBorderType(payload: TableBorder)
|
||||
```
|
||||
|
||||
## executeTableTdBackgroundColor
|
||||
|
||||
Feature: Table cell background color
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeTableTdBackgroundColor(payload: string)
|
||||
```
|
||||
|
||||
## executeImage
|
||||
|
||||
Feature: Insert a picture
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeImage({
|
||||
width: number;
|
||||
height: number;
|
||||
value: string;
|
||||
})
|
||||
```
|
||||
|
||||
## executeHyperlink
|
||||
|
||||
Feature: Insert a link
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeHyperlink({
|
||||
type: ElementType.HYPERLINK,
|
||||
value: string,
|
||||
url: string,
|
||||
valueList: IElement[]
|
||||
})
|
||||
```
|
||||
|
||||
## executeDeleteHyperlink
|
||||
|
||||
Feature: Delete the link
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeDeleteHyperlink()
|
||||
```
|
||||
|
||||
## executeCancelHyperlink
|
||||
|
||||
Feature: Unlink
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeCancelHyperlink()
|
||||
```
|
||||
|
||||
## executeEditHyperlink
|
||||
|
||||
Feature: Edit the link
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeEditHyperlink(newUrl: string)
|
||||
```
|
||||
|
||||
## executeSeparator
|
||||
|
||||
Feature: Insert a dividing line
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSeparator(dashArray: number[])
|
||||
```
|
||||
|
||||
## executePageBreak
|
||||
|
||||
Feature: Page breaks
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executePageBreak()
|
||||
```
|
||||
|
||||
## executeAddWatermark
|
||||
|
||||
Feature: Add a watermark
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeAddWatermark({
|
||||
data: string;
|
||||
color?: string;
|
||||
opacity?: number;
|
||||
size?: number;
|
||||
font?: string;
|
||||
})
|
||||
```
|
||||
|
||||
## executeDeleteWatermark
|
||||
|
||||
Feature: Remove the watermark
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeDeleteWatermark()
|
||||
```
|
||||
|
||||
## executeSearch
|
||||
|
||||
Feature: 搜索
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSearch(keyword: string)
|
||||
```
|
||||
|
||||
## executeSearchNavigatePre
|
||||
|
||||
Feature: Search Navigation - Previous
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSearchNavigatePre()
|
||||
```
|
||||
|
||||
## executeSearchNavigateNext
|
||||
|
||||
Feature: Search Navigation - Next
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSearchNavigateNext()
|
||||
```
|
||||
|
||||
## executeReplace
|
||||
|
||||
Feature: Search for replacement
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeReplace(newWord: string)
|
||||
```
|
||||
|
||||
## executePrint
|
||||
|
||||
Feature: Print
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executePrint()
|
||||
```
|
||||
|
||||
## executeReplaceImageElement
|
||||
|
||||
Feature: Replace the picture
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeReplaceImageElement(newUrl: string)
|
||||
```
|
||||
|
||||
## executeSaveAsImageElement
|
||||
|
||||
Feature: Save as picture
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSaveAsImageElement()
|
||||
```
|
||||
|
||||
## executeChangeImageDisplay
|
||||
|
||||
Feature: Change how image rows are displayed
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSaveAsImageElement(element: IElement, display: ImageDisplay)
|
||||
```
|
||||
|
||||
## executePageMode
|
||||
|
||||
Feature: Page mode
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executePageMode(pageMode: PageMode)
|
||||
```
|
||||
|
||||
## executePageScaleRecovery
|
||||
|
||||
Feature: Restore the original zoom factor of the page
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executePageScaleRecovery()
|
||||
```
|
||||
|
||||
## executePageScaleMinus
|
||||
|
||||
Feature: Page zoom out
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executePageScaleMinus()
|
||||
```
|
||||
|
||||
## executePageScaleAdd
|
||||
|
||||
Feature: Page zoom in
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executePageScaleAdd()
|
||||
```
|
||||
|
||||
## executePaperSize
|
||||
|
||||
Feature: Set the paper size
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executePaperSize(width: number, height: number)
|
||||
```
|
||||
|
||||
## executePaperDirection
|
||||
|
||||
Feature: Set the paper orientation
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executePaperDirection(paperDirection: PaperDirection)
|
||||
```
|
||||
|
||||
## executeSetPaperMargin
|
||||
|
||||
Feature: Set the paper margins
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSetPaperMargin([top: number, right: number, bottom: number, left: number])
|
||||
```
|
||||
|
||||
## executeInsertElementList
|
||||
|
||||
Feature: Insert an element
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeInsertElementList(elementList: IElement[])
|
||||
```
|
||||
|
||||
## executeAppendElementList
|
||||
|
||||
Feature: Append elements
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeAppendElementList(elementList: IElement[], options?: IAppendElementListOption)
|
||||
```
|
||||
|
||||
## executeSetValue
|
||||
|
||||
Feature: Set the editor data
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSetValue(payload: Partial<IEditorData>)
|
||||
```
|
||||
|
||||
## executeRemoveControl
|
||||
|
||||
Feature: Delete the control
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeRemoveControl()
|
||||
```
|
||||
|
||||
## executeSetLocale
|
||||
|
||||
Feature: Set local language
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeSetLocale(locale: string)
|
||||
```
|
||||
|
||||
## executeLocationCatalog
|
||||
|
||||
Feature: Locate directory location
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeLocationCatalog(titleId: string)
|
||||
```
|
||||
|
||||
## executeWordTool
|
||||
|
||||
Feature: Word Tool (Delete blank lines and leading Spaces)
|
||||
|
||||
Usage:
|
||||
|
||||
```javascript
|
||||
instance.command.executeWordTool()
|
||||
```
|
||||
Reference in New Issue
Block a user