Interface IPropertySetting
Exposes methods and properties for a concrete property setttings used in StyleSheets and Themes. PropertySetting can customize the current value of any RadPropertry of any RadElement instance.
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public interface IPropertySetting
Properties
Property
Gets or sets the property itself.
Declaration
RadProperty Property { get; set; }
Property Value
RadProperty
|
Methods
ApplyValue(RadObject)
Applies the value to the element given as a parameter.
Declaration
void ApplyValue(RadObject element)
Parameters
RadObject
element
the element that the property value is applied to. |
GetCurrentValue(RadObject)
Retrieves the current value of the property.
Declaration
object GetCurrentValue(RadObject forObject)
Parameters
RadObject
forObject
|
Returns
System.Object
|
UnapplyValue(RadObject)
Unapply the property to the element given as a parameter.
Declaration
void UnapplyValue(RadObject element)
Parameters
RadObject
element
the element that the property value is unapplied to. |