Files
NetUnicodeInfo/UnicodeInformation/CjkRadicalInfo.cs
T
GoldenCrystal 751e84fc6d Add DebuggerDisplay attributes.
Format some code to C# 7.0.
Remove useless using directives.
2017-09-07 23:10:17 +02:00

44 lines
2.5 KiB
C#

using System.Diagnostics;
namespace System.Unicode
{
/// <summary>Provides information on a specific CJK radical.</summary>
[DebuggerDisplay("{RadicalIndex} - {TraditionalRadicalCodePoint.ToString(),nq} / {SimplifiedRadicalCodePoint.ToString(),nq}")]
public struct CjkRadicalInfo
{
private readonly byte radicalIndex;
private readonly CjkRadicalData radicalData;
/// <summary>The index of the radical in the Kangxi dictionary.</summary>
/// <remarks>There are 214 radicals, numbered from 1 to 214.</remarks>
public byte RadicalIndex { get { return radicalIndex; } }
/// <summary>Gets a code point representing the CJK radical in its traditional form.</summary>
public char TraditionalRadicalCodePoint { get { return radicalData.TraditionalRadicalCodePoint; } }
/// <summary>Gets the code point of a traditional character composed only of the CJK radical.</summary>
/// <remarks>
/// Usually, the glyph of this code point will be the same as the one used for <see cref="TraditionalRadicalCodePoint"/>.
/// However, the code point returned will have a meaning associated, contrary to the one returned by <see cref="TraditionalRadicalCodePoint"/>, which only represents the radical.
/// </remarks>
public char TraditionalCharacterCodePoint { get { return radicalData.TraditionalCharacterCodePoint; } }
/// <summary>Gets a code point representing the CJK radical in its simplified form, which may be the same as the traditional form.</summary>
/// <remarks>Most of the time, the value returned will be the same as <see cref="TraditionalRadicalCodePoint"/>.</remarks>
public char SimplifiedRadicalCodePoint { get { return radicalData.SimplifiedRadicalCodePoint; } }
/// <summary>Gets the code point of a simplified character composed only of the CJK radical.</summary>
/// <remarks>
/// Usually, the glyph of this code point will be the same as the one used for <see cref="SimplifiedRadicalCodePoint"/>.
/// However, the code point returned will have a meaning associated, contrary to the one returned by <see cref="SimplifiedRadicalCodePoint"/>, which only represents the radical.
/// </remarks>
public char SimplifiedCharacterCodePoint { get { return radicalData.SimplifiedCharacterCodePoint; } }
/// <summary>Gets a value indicating whether a simplified form exists for the given radical.</summary>
public bool HasSimplifiedForm { get { return radicalData.HasSimplifiedForm; } }
internal CjkRadicalInfo(byte radicalIndex, CjkRadicalData radicalData)
{
this.radicalIndex = radicalIndex;
this.radicalData = radicalData;
}
}
}