PropertyGuidsForContextNodesBase.Descender-Feld
Gibt die GUID (Globally Unique Identifier) zum Abrufen des Punktarrays an, das die Unterlängen in einem Freihandwort darstellt.
Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Syntax
'Declaration
Public Shared ReadOnly Descender As Guid
'Usage
Dim value As Guid
value = PropertyGuidsForContextNodesBase.Descender
public static readonly Guid Descender
public:
static initonly Guid Descender
public static final Guid Descender
public static final var Descender : Guid
Hinweise
Dieses Feld stellt die Unterlängen in einem ContextNode vom Typ InkWord dar. Unterlängen sind der Teil eines Kleinbuchstabens, der sich unterhalb des Haupttexts eines Buchstabens erstreckt.
Beispiele
Im folgenden Beispiel wird das Descender-Feld veranschaulicht.
' Get the descenders on an ink word
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForContextNodes.Descender) Then
Dim myDescenders() As Integer = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForContextNodes.Descender), Integer())
End If
// Get the descenders on an ink word
if (myAnalysisHintNode.ContainsPropertyData(
PropertyGuidsForContextNodes.Descender))
{
int[] myDescenders =
(int[])myAnalysisHintNode.GetPropertyData(
PropertyGuidsForContextNodes.Descender);
}
Plattformen
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.
Versionsinformationen
.NET Framework
Unterstützt in: 3.0
Siehe auch
Referenz
PropertyGuidsForContextNodesBase-Klasse