# Customize Contextmenu ## How to Use ```javascript import Editor from "@hufe921/canvas-editor" const instance = new Editor(container, data, options) instance.register.contextMenuList([ { isDivider?: boolean; icon?: string; name?: string; // Use %s for selection text. Example: Search: %s shortCut?: string; when?: (payload: IContextMenuContext) => boolean; callback?: (command: Command, context: IContextMenuContext) => any; childMenus?: IRegisterContextMenu[]; } ]) ```