IStylePropertyDefinition
Represents a style property definition in the Telerik document model.
Definition
Namespace:Telerik.Windows.Documents.Model.Styles
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public interface IStylePropertyDefinition
Derived Classes:
Properties
Gets the global index of the style property definition.
int GlobalPropertyIndex { get; }
An integer representing the global property index.
Gets the type of the property container associated with the style property definition.
Type PropertyContainerType { get; }
Gets the name of the style property represented by this definition.
string PropertyName { get; }
The name of the style property as a string.
Gets the options associated with the style property definition.
StylePropertyOptions PropertyOptions { get; }
Gets the type of value that the style property can hold.
Type PropertyValueType { get; }
Methods
Clears the value of the style property associated with the specified document element.
void ClearValue(DocumentElement element)
The document element for which the style property value will be cleared.