| File: System\Windows\Documents\PropertyValueAction.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // Description: PropertyValueAction is used in TextRange.ApplyPopertyValue method // for defining a way how to apply the value of a property. // namespace System.Windows.Documents { /// <summary> /// PropertyValueAction is used in TextRange.ApplyPropertyValue method /// for defining a way how to apply the value passed as a parameter: /// set it as is, use it for increasing the existing values or /// use for decreasing. /// </summary> internal enum PropertyValueAction { /// <summary> /// This option indicates that the value passed as a parameter /// must be set as is. /// </summary> SetValue, /// <summary> /// This option indicates that the value passed as a parameter /// must be used as an absolute increment for existing values. /// </summary> IncreaseByAbsoluteValue, /// <summary> /// This option indicates that the value passed as a parameter /// must be used as an absolute decrement for existing values. /// </summary> DecreaseByAbsoluteValue, /// <summary> /// This options indicates that the value passed as a parameter /// must be used as a percentage increment for existing values. /// </summary> IncreaseByPercentageValue, /// <summary> /// This options indicates that the value passed as a parameter /// must be used as a percentage decrement for existing values. /// </summary> DecreaseByPercentageValue, } }