Table of Contents
- Getting Started
- EO.Pdf
- EO.Web
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
- .NET API Reference
- EO.Base
- EO.Base.UI
- EO.Extensions
- EO.Pdf
- EO.Pdf.Acm
- EO.Pdf.Contents
- EO.Pdf.Drawing
- EO.Pdf.Mvc
- EO.Web
- EO.Web
- Classes
- Structures
- Enumerations
- BackgroundRepeat Enumeration
- CalendarSwapStyle Enumeration
- CalendarTitleTemplateScope Enumeration
- CalendarWeekNumberBase Enumeration
- CallbackPanelUpdateMode Enumeration
- CallbackQueueMode Enumeration
- CaptchaCharSet Enumeration
- CaptchaImageStorage Enumeration
- CaptchaNoiseLevel Enumeration
- CheckState Enumeration
- ColorModel Enumeration
- DatePickerPopupTrigger Enumeration
- DialogState Enumeration
- DragDropScope Enumeration
- EditorMode Enumeration
- EditorPasteFilter Enumeration
- EditorToolBarSet Enumeration
- EffectType Enumeration
- ExpandDirection Enumeration
- ExpandOnClickState Enumeration
- FloaterGlideMode Enumeration
- FloaterScrollMode Enumeration
- GridColumnDataType Enumeration
- ImageZoomEffectType Enumeration
- ImageZoomPosition Enumeration
- LineBreakMode Enumeration
- MaskedEditSegmentType Enumeration
- MenuItemImages.ImageMode Enumeration
- ModifierKeys Enumeration
- MsgBoxButtonType Enumeration
- NavigationItemSearchOptions Enumeration
- NavigatorAutoSelectSource Enumeration
- NavigatorAutoSelectTarget Enumeration
- Orientation Enumeration
- OverlapAlign Enumeration
- OverlapDirection Enumeration
- RatingPrecision Enumeration
- ReadingDirection Enumeration
- RunningMode Enumeration
- ScrollBars Enumeration
- SlideMenuEffect Enumeration
- SliderTickPosition Enumeration
- SortOrder Enumeration
- SplitterButtonAlignment Enumeration
- SplitterPaneState Enumeration
- SubMenuIconSource Enumeration
- SubMenuPositionConfine Enumeration
- ToolBarItemTextAlign Enumeration
- ToolBarItemType Enumeration
- ToolTipAnimation Enumeration
- TopLevelItemAlign Enumeration
- TreeViewSingleExpandMode Enumeration
- Delegates
- EO.WebBrowser
- EO.WebBrowser.DOM
- EO.WebEngine
- EO.WinForm
- EO.Wpf
- EO.Wpf.Gauge
- EO.Wpf.Gauge.Shapes
- EO.Wpf.Primitives
- EO.Wpf.Themes.Aero
- EO.Wpf.Themes.Classic
- EO.Wpf.Themes.Luna
- EO.Wpf.Themes.Metro
- EO.Wpf.Themes.Royale
- JavaScript API Reference
- .NET API Reference
EditorPasteFilter Enumeration |
Specifies the type of the filter to be applied when user pastes text into the editor.
Namespace:
EO.Web
Assembly: EO.Web (in EO.Web.dll)
Syntax
public enum EditorPasteFilter
Remarks
The filter modifies the text before it is being pasted. For example, TextOnly filter strips all HTML formatting, thus transforms a HTML segment into its plain text equivalent.
Custom filtering can be implemented by handling ClientSideOnPaste client side event.
Members
Member Name | Description |
---|---|
None | The text is pasted as is. |
MsWordAuto | The editor automatically checks whether the content is from Word, and if so, automatically cleans up unnecessary Word formatting code. |
MsWordWithConfirm | The editor automatically checks whether the content is from Word, and if so, asks user to confirm whether to cleans up unnecessary Word formatting code. |
TextOnly | The editor automatically removes all HTML formatting. |
TextWithLineBreak | The editor automatically removes all HTML formatting, but keeps the line breaks. |
See Also