Interface
IStyleProperty<TValue>

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 IStyleProperty.GetLocalValueAsObject()IStyleProperty.GetActualValueAsObject()IStyleProperty.SetValueAsObject(object)IStyleProperty.ClearValue()IStyleProperty.PropertyDefinitionIStyleProperty.HasLocalValue

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