PropertySetting
Definition
Namespace:Telerik.WinControls
Assembly:Telerik.WinControls.dll
Syntax:
public class PropertySetting : IPropertySetting
Inheritance: objectPropertySetting
Implements:
Gets the associated RadProperty.
public RadProperty Property { get; set; }
Implements:
Constructors
Initializes a new instnace of the PropertySetting class.
public PropertySetting()
Initializes a new instnace of the PropertySetting class by using an exising property setting instance.
public PropertySetting(PropertySetting setting)
An existing property setting.
Initializes a new instnace of the PropertySetting class by specifying property and its value.
public PropertySetting(RadProperty property, object value)
A property.
valueobjectA property value.
Fields
Gets or sets the property mapper used to map property names based on the stylable element type.
public PropertyMapper PropertyMapper
Properties
Gets an instance of AnimatedPropertySetting related with this setting.
public AnimatedPropertySetting AnimatedSetting { get; set; }
Gets or sets the property end value (creates an animated property setting).
public object EndValue { get; set; }
Gets or sets the full property name (including the class name).
public string FullName { get; set; }
Methods
Resolves the RadProperty object based on its arguments.
public static RadProperty FindProperty(Type currentType, string propertyName, bool fallback)
The type which owns this property.
propertyNamestringThe property name.
fallbackboolSpecifies whether to search base classes if the current type does not contain the specified property.
Returns:An instance of RadProperty if successful.