New to Telerik UI for WPFStart a free 30-day trial

Represents a style property definition in the Telerik document model.

Definition

Namespace:Telerik.Windows.Documents.Model.Styles

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public interface IStylePropertyDefinition

Derived Classes: StylePropertyDefinition<TValue, TProperties>

Properties

Gets the global index of the style property definition.

C#
int GlobalPropertyIndex { get; }
Property Value:

An integer representing the global property index.

Gets the type of the property container associated with the style property definition.

C#
Type PropertyContainerType { get; }

Gets the name of the style property represented by this definition.

C#
string PropertyName { get; }
Property Value:

The name of the style property as a string.

Gets the options associated with the style property definition.

C#
StylePropertyOptions PropertyOptions { get; }

Gets the type of value that the style property can hold.

C#
Type PropertyValueType { get; }

Methods

Clears the value of the style property associated with the specified document element.

C#
void ClearValue(DocumentElement element)
Parameters:elementDocumentElement

The document element for which the style property value will be cleared.