RadDependencyObject
Class
Represents a base class for objects that have dependency properties and provides methods for property change notifications and property value resolution.
Definition
Namespace:Telerik.Windows.Base
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
C#
public abstract class RadDependencyObject
Inheritance: objectRadDependencyObject
Constructors
C#
protected RadDependencyObject()
Methods
Retrieves the current value of a dependency property from this instance.
C#
public object GetValue(RadDependencyProperty dependencyProperty)
The dependency property from which to get the value.
Returns:The current value of the specified dependency property. If the property does not exist, or is not set, the default value is returned.
C#
protected virtual void OnPropertyChanged(RadDependencyPropertyChangedEventArgs e)
Sets the value of the specified dependency property to the provided value.
C#
public void SetValue(RadDependencyProperty dependencyProperty, object value)
The dependency property to set.
valueobjectThe value to apply to the dependency property.