Compartir a través de


PropertyGuidsForAnalysisHints.Name (Campo)

Actualización: noviembre 2007

Especifica el identificador único global (GUID) para obtener y establecer el objeto String que representa el nombre de una sugerencia de análisis.

Espacio de nombres:  Microsoft.Ink
Ensamblado:  Microsoft.Ink.Analysis (en Microsoft.Ink.Analysis.dll)

Sintaxis

'Declaración
Public Shared ReadOnly Name As Guid
'Uso
Dim value As Guid

value = PropertyGuidsForAnalysisHints.Name
public static readonly Guid Name
public:
static initonly Guid Name
public static final Guid Name
public static final var Name : Guid

Comentarios

Este campo representa el nombre de un objeto ContextNode de tipo AnalysisHint.

Ejemplos

En el siguiente ejemplo se muestra el campo Name.

' Get the name of the analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForAnalysisHints.Name) Then
    Dim myName As String = _
        CType(myAnalysisHintNode.GetPropertyData( _
        PropertyGuidsForAnalysisHints.Name), String)
End If
// Get the name of the analysis hint
if (myAnalysisHintNode.ContainsPropertyData(
    PropertyGuidsForAnalysisHints.Name))
{
    string myInkRecognizerGuideBaseByGuid =
        (string)myAnalysisHintNode.GetPropertyData(
        PropertyGuidsForAnalysisHints.Name);
}

Plataformas

Windows Vista

.NET Framework y .NET Compact Framework no admiten todas las versiones de cada plataforma. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.

Información de versión

.NET Framework

Compatible con: 3.0

Vea también

Referencia

PropertyGuidsForAnalysisHints (Clase)

PropertyGuidsForAnalysisHints (Miembros)

Microsoft.Ink (Espacio de nombres)