Specifies options that control the behavior of a style property in the Telerik document model. These options can be combined using a bitwise OR operation.
Definition
Namespace:Telerik.Windows.Documents.Model.Styles
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
C#
[Flags]
public enum StylePropertyOptions
Fields
Indicates that changes to the property affect the arrange pass of the layout process.
C#
AffectsArrange = 1
Indicates that changes to the property affect both the arrange and measure passes of the layout process.
C#
AffectsLayout = AffectsArrange | AffectsMeasure
Indicates that changes to the property affect the measure pass of the layout process.
C#
AffectsMeasure = 2
No special options are applied to the style property.
C#
None = 0