Enum
StylePropertyOptions

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:

cs-api-definition
[Flags]
public enum StylePropertyOptions

Fields

AffectsArrange

Indicates that changes to the property affect the arrange pass of the layout process.

Declaration

cs-api-definition
AffectsArrange = 1

Field Value

StylePropertyOptions

AffectsLayout

Indicates that changes to the property affect both the arrange and measure passes of the layout process.

Declaration

cs-api-definition
AffectsLayout = AffectsArrange | AffectsMeasure

Field Value

StylePropertyOptions

AffectsMeasure

Indicates that changes to the property affect the measure pass of the layout process.

Declaration

cs-api-definition
AffectsMeasure = 2

Field Value

StylePropertyOptions

None

No special options are applied to the style property.

Declaration

cs-api-definition
None = 0

Field Value

StylePropertyOptions