Skip to main content
A newer version of this page is available. .

ToolbarCopyButton Class

A default toolbar button that allows the content selected within the design view area to be copied to the clipboard.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public class ToolbarCopyButton :
    HtmlEditorToolbarItem

Remarks

The ASPxHtmlEditor allows end-users to work with the clipboard. The clipboard provides the capability to perform cut, copy and paste operations using toolbar buttons, the context menu, or shortcuts.

The ASPxHtmlEditor provides the Cut (ToolbarCutButton), Copy (ToolbarCopyButton), and Paste (ToolbarPasteButton) toolbar buttons.

You can add the Copy button to toolbars by using either the ASPxHtmlEditor designer at design time, or programmatically.

protected void Page_Load(object sender, EventArgs e) {
    HtmlEditorToolbar stToolbar1 = HtmlEditorToolbar.CreateStandardToolbar1();
    ToolbarCopyButton copyButton = new ToolbarCopyButton();
    stToolbar1.Items.Add(copyButton);
    ASPxHtmlEditor1.Toolbars.Add(stToolbar1);
}

Note

Some browsers (e.g., Firefox, Chrome) do not allow scripts to work with the clipboard for security reasons. As a result, the Cut, Copy and Paste toolbox items are disabled for these browsers.

See Also