Class DataProviderBase
Represents a wrapper of IText
Inheritance
Namespace: Telerik.Windows.Documents.FormatProviders
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class DataProviderBase : FrameworkElement
Constructors
DataProviderBase(ITextBasedDocumentFormatProvider, DependencyProperty)
Initializes a new instance of the Data
Declaration
public DataProviderBase(ITextBasedDocumentFormatProvider formatProvider, DependencyProperty stringProperty)
Parameters
IText The format provider. |
System. The string property. |
DataProviderBase(ITextBasedDocumentFormatProvider, FrameworkElement, DependencyProperty)
Initializes a new instance of the Data
Declaration
public DataProviderBase(ITextBasedDocumentFormatProvider formatProvider, FrameworkElement propertyOwner, DependencyProperty stringProperty)
Parameters
IText The format provider. |
System. The property owner. |
System. The string property. |
Fields
FormatProviderProperty
The format provider property.
Declaration
public static readonly DependencyProperty FormatProviderProperty
Field Value
System.
|
RichTextBoxProperty
The rich text box property.
Declaration
public static readonly DependencyProperty RichTextBoxProperty
Field Value
System.
|
UpdateSourceTriggerProperty
The update source trigger property.
Declaration
public static readonly DependencyProperty UpdateSourceTriggerProperty
Field Value
System.
|
Properties
FormatProvider
Gets or sets the IText
Declaration
public ITextBasedDocumentFormatProvider FormatProvider { get; set; }
Property Value
RichTextBox
Gets or sets the Rad
Declaration
public RadRichTextBox RichTextBox { get; set; }
Property Value
String
Gets or sets the string representing the document.
Declaration
protected string String { get; set; }
Property Value
System. The string. |
UpdateSourceTrigger
Gets or sets the update source trigger.
Declaration
public DataProviderUpdateSourceTrigger UpdateSourceTrigger { get; set; }
Property Value
Data The update source trigger. |
Methods
Bind(RadRichTextBox)
Binds the specified Rad
Declaration
protected virtual void Bind(RadRichTextBox radRichTextBox)
Parameters
Rad The RadRichTextBox. |
CreateStringProperty(String)
Creates a custom string property.
Declaration
protected static DependencyProperty CreateStringProperty(string name)
Parameters
System. The name. |
Returns
System.
|
OnAttachedDataProviderPropertyChanged(DependencyObject, DependencyPropertyChangedEventArgs)
Called after changing the attached data provider.
Declaration
public static void OnAttachedDataProviderPropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
Parameters
System. The dependency object. |
System. The System. |
OnImportException(DataProviderImportExceptionEventArgs)
Raises the Import
Declaration
protected virtual void OnImportException(DataProviderImportExceptionEventArgs args)
Parameters
Data The Data |
OnSetupDocument(RadDocument)
Called when the data provider creates a new document.
Declaration
protected virtual void OnSetupDocument(RadDocument document)
Parameters
Rad The document. |
OnStringChanged()
Called when the string associated to the provider is changed.
Declaration
protected virtual void OnStringChanged()
SetValueRespectingOneWayBindings(String)
Sets the value respecting one way bindings.
Declaration
protected void SetValueRespectingOneWayBindings(string value)
Parameters
System. The value. |
StringPropertyChangedCallback(DependencyObject, DependencyPropertyChangedEventArgs)
A callback invoked when the associated string is changed.
Declaration
protected static void StringPropertyChangedCallback(DependencyObject sender, DependencyPropertyChangedEventArgs e)
Parameters
System. The sender. |
System. The System. |
Unbind(RadRichTextBox)
Unbinds the specified Rad
Declaration
protected virtual void Unbind(RadRichTextBox radRichTextBox)
Parameters
Rad The RadRichTextBox. |
UpdateAttachedDataProvider(DependencyObject, Func<RadRichTextBox, DataProviderBase>, Func<DependencyObject, DataProviderBase>, Action<DependencyObject, DataProviderBase>, DependencyProperty, Object)
Updates the attached data provider.
Declaration
public static void UpdateAttachedDataProvider(DependencyObject dependencyObject, Func<RadRichTextBox, DataProviderBase> formatProviderFactory, Func<DependencyObject, DataProviderBase> getAttachedDataProvider, Action<DependencyObject, DataProviderBase> setAttachedDataProvider, DependencyProperty attachedDataProviderProperty, object newValue)
Parameters
System. The dependency object. |
System. The format provider factory. |
System. A function that can get the attached to Rad |
System. A function that can set the attached to Rad |
System. The attached data provider property. |
System. The new value. |
UpdateDocument()
Updates the document inside the control.
Declaration
public virtual void UpdateDocument()
UpdateString()
Updates the string representing the document.
Declaration
public virtual void UpdateString()
Events
ImportException
Occurs when the import causes an exception.
Declaration
public event EventHandler<DataProviderImportExceptionEventArgs> ImportException
Event Type
System.
|
SetupDocument
Occurs when the data provider creates a new document.
Declaration
public event EventHandler<SetupDocumentEventArgs> SetupDocument
Event Type
System.
|
StringChanged
Occurs after the string associated to the provider changes.
Declaration
protected event EventHandler StringChanged
Event Type
System.
|