1
1
// Licensed to the .NET Foundation under one or more agreements.
2
2
// The .NET Foundation licenses this file to you under the MIT license.
3
- // See the LICENSE file in the project root for more information.
4
3
4
+ using System . ComponentModel . Design . Serialization ;
5
5
using System . ComponentModel ;
6
6
using System . Globalization ;
7
7
using System . Reflection ;
8
8
9
9
namespace System . Windows
10
10
{
11
11
/// <summary>
12
- /// Provides a type converter to convert from <see langword ="string"/> to <see cref="TextDecorationCollection"/> only.
12
+ /// Provides a type converter to convert from <see cref ="string"/> to <see cref="TextDecorationCollection"/> only.
13
13
/// </summary>
14
14
public sealed class TextDecorationCollectionConverter : TypeConverter
15
15
{
@@ -44,7 +44,7
AC92
@@ public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceT
44
44
}
45
45
46
46
/// <summary>
47
- /// Converts <paramref name="input"/> of <see langword="string"/> type to its <see cref="TextDecorationCollection"/> represensation .
47
+ /// Converts <paramref name="input"/> of <see langword="string"/> type to its <see cref="TextDecorationCollection"/> representation .
48
48
/// </summary>
49
49
/// <param name="context">Context information used for conversion, ignored currently.</param>
50
50
/// <param name="culture">The culture specifier to use, ignored currently.</param>
@@ -62,10 +62,10 @@ public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo c
62
62
}
63
63
64
64
/// <summary>
65
- /// Converts <paramref name="text"/> to its <see cref="TextDecorationCollection"/> represensation .
65
+ /// Converts <paramref name="text"/> to its <see cref="TextDecorationCollection"/> representation .
66
66
/// </summary>
67
67
/// <param name="text">The string to be converted into TextDecorationCollection object.</param>
68
- /// <returns>A <see cref="TextDecorationCollection"/> representing the <see langword ="string"/> specified by <paramref name="text"/>.</returns>
68
+ /// <returns>A <see cref="TextDecorationCollection"/> representing the <see cref ="string"/> specified by <paramref name="text"/>.</returns>
69
69
/// <remarks>
70
70
/// The text parameter can be either be <see langword="null"/>; <see cref="string.Empty"/>; the string "None"
71
71
/// or a combination of the predefined <see cref="TextDecorations"/> names delimited by commas (,).
0 commit comments