Paste from Word Dialog
The Paste from Word dialog allows users to paste text from a Word document with its original formatting and font settings.
#Concept
#Related Client API
On the client side, the ASPxHtmlEditor API allows you to manage the opened dialog programmatically.
Dialog UI elements | Client method |
---|---|
Common Dialog UI elements | ASPx |
#Example
function onDialogInitialized(s, e) {
if (e.dialogName === ASPxClientCommandConsts.PASTEFROMWORDDIALOG_COMMAND)
e.dialog.GetRemoveFontFamilyCheckBox().SetValue(true);
}