InterfaceIStyleProperty<TValue>
Interface
Provides strongly-typed access to style property values with local assignment and inherited value resolution through the styling chain.
Definition
Namespace:Telerik.Windows.Documents.Flow.Model.Styles.Core
Assembly:Telerik.Windows.Documents.Flow.dll
Type Parameters:
TValue
Syntax:
cs-api-definition
public interface IStyleProperty<TValue> : IStyleProperty
Inherited Members
Properties
LocalValue
Gets or sets the directly assigned value for this property, overriding inherited values from styles or document defaults.
Declaration
cs-api-definition
TValue LocalValue { get; set; }
Property Value
TValue
Methods
GetActualValue()
Resolves and returns the effective value by walking the inheritance chain from local value through styles to document defaults.
Declaration
cs-api-definition
TValue GetActualValue()
Returns
TValue