Class PropertySetting
Inheritance
Inherited Members
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public class PropertySetting : IPropertySetting
Constructors
PropertySetting()
Initializes a new instnace of the PropertySetting class.
Declaration
public PropertySetting()
PropertySetting(String, Object)
Initializes a new instnace of the PropertySetting class by specifying property name and its value.
Declaration
public PropertySetting(string propertyName, object value)
Parameters
System. A property name. |
System. A property value. |
PropertySetting(PropertySetting)
Initializes a new instnace of the PropertySetting class by using an exising property setting instance.
Declaration
public PropertySetting(PropertySetting setting)
Parameters
Property An existing property setting. |
PropertySetting(RadProperty, Object)
Initializes a new instnace of the PropertySetting class by specifying property and its value.
Declaration
public PropertySetting(RadProperty property, object value)
Parameters
Rad A property. |
System. A property value. |
Fields
PropertyMapper
Gets or sets the property mapper used to map property names based on the stylable element type.
Declaration
public PropertyMapper PropertyMapper
Field Value
Properties
AnimatedSetting
Gets an instance of Animated
Declaration
public AnimatedPropertySetting AnimatedSetting { get; set; }
Property Value
EndValue
Gets or sets the property end value (creates an animated property setting).
Declaration
public object EndValue { get; set; }
Property Value
System.
|
FullName
Gets or sets the full property name (including the class name).
Declaration
public string FullName { get; set; }
Property Value
System.
|
Name
Gets or sets the property name.
Declaration
public string Name { get; set; }
Property Value
System.
|
Property
Gets the associated RadProperty.
Declaration
public RadProperty Property { get; set; }
Property Value
Implements
Value
Gets or sets the property value.
Declaration
public object Value { get; set; }
Property Value
System.
|
Methods
ApplyValue(RadObject)
Applies the property setting on the specified element.
Declaration
public void ApplyValue(RadObject element)
Parameters
Implements
FindProperty(Type, String, Boolean)
Resolves the Rad
Declaration
public static RadProperty FindProperty(Type currentType, string propertyName, bool fallback)
Parameters
System. The type which owns this property. |
System. The property name. |
System. Specifies whether to search base classes if the current type does not contain the specified property. |
Returns
Rad An instance of Rad |
GetCurrentValue(RadObject)
Gets the current property value for the specified Rad
Declaration
public object GetCurrentValue(RadObject forObject)
Parameters
Rad The object. |
Returns
System. The current property value for the object. |
Implements
UnapplyValue(RadObject)
Unapplies the property setting from the specified element.
Declaration
public void UnapplyValue(RadObject element)