PropertyGuidsForContextNodesBase.Descender, champ
Mise à jour : November 2007
Spécifie l'identificateur global unique (GUID) permettant d'obtenir le tableau de points qui représente la ligne des descendantes sur un mot manuscrit.
Espace de noms : System.Windows.Ink.AnalysisCore
Assembly : IACore (dans IACore.dll)
Syntaxe
'Déclaration
Public Shared ReadOnly Descender As Guid
'Utilisation
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
Notes
Ce champ représente les descendantes sur un ContextNode de type InkWord. Les descendantes correspondent à la partie supérieure d'une minuscule qui s'étend au-dessous du corps principal de cette lettre.
Exemples
L'exemple suivant présente le champ Descender.
' 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);
}
Plateformes
Windows Vista, Windows XP SP2, Windows Server 2003
Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Informations de version
.NET Framework
Pris en charge dans : 3.0
Voir aussi
Référence
PropertyGuidsForContextNodesBase, classe