| File: System\Windows\Documents\HighlightChangedEventArgs.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: HighlightLayer.Changed event argument. // using System.Collections.Generic; namespace System.Windows.Documents { /// <summary> /// HighlightLayer.Changed event argument. /// </summary> internal abstract class HighlightChangedEventArgs { /// <summary> /// Sorted, non-overlapping, readonly collection of TextSegments /// affected by a highlight change. /// </summary> internal abstract IList<TextSegment> Ranges { get; } /// <summary> /// Type identifying the owner of the changed layer. /// </summary> internal abstract Type OwnerType { get; } } }