PropertyGuidsForContextNodesBase.Ascender - поле
Обновлен: Ноябрь 2007
Specifies the globally unique identifier (GUID) for getting the point array that represents the ascenders on an ink word.
Пространство имен: System.Windows.Ink.AnalysisCore
Сборка: IACore (в IACore.dll)
Синтаксис
'Декларация
Public Shared ReadOnly Ascender As Guid
'Применение
Dim value As Guid
value = PropertyGuidsForContextNodesBase.Ascender
public static readonly Guid Ascender
public:
static initonly Guid Ascender
public static final Guid Ascender
public static final var Ascender : Guid
Заметки
This field represents the ascenders on a ContextNode of type InkWord. Ascenders are the portion of a lowercase letter that extends above the main body of a letter.
Примеры
The following example demonstrates the Ascender field.
' Get the ascenders on an ink word
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForContextNodes.Ascender) Then
Dim myAscenders() As Integer = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForContextNodes.Ascender), Integer())
End If
// Get the ascenders on an ink word
if (myAnalysisHintNode.ContainsPropertyData(
PropertyGuidsForContextNodes.Ascender))
{
int[] myAscenders =
(int[])myAnalysisHintNode.GetPropertyData(
PropertyGuidsForContextNodes.Ascender);
}
Платформы
Windows Vista, Windows XP с пакетом обновления 2 (SP2), Windows Server 2003
Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.
Сведения о версии
.NET Framework
Поддерживается в версии: 3.0
См. также
Ссылки
PropertyGuidsForContextNodesBase Класс