ClipboardHandler
Class
Defines data provider that will be used to import specific clipboard data format.
Definition
Namespace:Telerik.Windows.Documents.Base
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
C#
public class ClipboardHandler
Inheritance: objectClipboardHandler
Constructors
C#
public ClipboardHandler()
Properties
Gets or sets the clipboard data format.
C#
public string ClipboardDataFormat { get; set; }
The clipboard data format (DataFormats.Html or DataFormats.Rtf).
Gets or sets a filter used to pre-process the data if such is needed.
C#
public Func<string, string> ClipboardStringFilter { get; set; }
The clipboard string filter.
Gets or sets the format provider used to import the data in the clipboard.
C#
public IDocumentFormatProvider DocumentFormatProvider { get; set; }
The document format provider, e.g. HtmlFormatProvider or RtfFormatProvider.