| File: System\Windows\Media\textformatting\TextMarkerProperties.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationCore\PresentationCore.csproj (PresentationCore) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // // // Contents: Definition of text marker properties // // Spec: Text Formatting API.doc // // namespace System.Windows.Media.TextFormatting { /// <summary> /// </summary> public abstract class TextMarkerProperties { /// <summary> /// Distance from line start to the end of the marker symbol /// </summary> public abstract double Offset { get; } /// <summary> /// Source of text runs used for text marker /// </summary> public abstract TextSource TextSource { get; } } }