| File: MS\Internal\TextFormatting\ITextMetrics.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: Layout measurement of formatted text up to the point where text is // broken by line breaking. // // Spec: Text Formatting API.doc // // namespace MS.Internal.TextFormatting { /// <summary> /// Measurement of formatted text up to the point where text is broken /// by the line breaking process /// </summary> internal interface ITextMetrics { /// <summary> /// Client to get the number of text source positions of this line /// </summary> int Length { get; } /// <summary> /// Client to get the number of characters following the last character /// of the line that may trigger reformatting of the current line. /// </summary> int DependentLength { get; } /// <summary> /// Client to get the number of newline characters at line end /// </summary> int NewlineLength { get; } /// <summary> /// Client to get distance from paragraph start to line start /// </summary> double Start { get; } /// <summary> /// Client to get the total width of this line /// </summary> double Width { get; } /// <summary> /// Client to get the total width of this line including width of whitespace characters at the end of the line. /// </summary> double WidthIncludingTrailingWhitespace { get; } /// <summary> /// Client to get the height of the line /// </summary> double Height { get; } /// <summary> /// Client to get the overall height of the list items marker of the line if any. /// </summary> double MarkerHeight { get; } /// <summary> /// Client to get the distance from top to baseline of this text line /// </summary> double Baseline { get; } /// <summary> /// Client to get the distance from the before edge of line height /// to the baseline of marker of the line if any. /// </summary> double MarkerBaseline { get; } } }