PropertyGuidsForAnalysisHints.Name Field

Specifies the globally unique identifier (GUID) for getting and setting the String that represents the name of an analysis hint.

Namespace: System.Windows.Ink
Assembly: IAWinFX (in iawinfx.dll)

Syntax

'Declaration
Public Shared ReadOnly Name As Guid
'Usage
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
Not applicable.

Remarks

This field represents the name on a ContextNode of type AnalysisHint.

Example

The following example checks for an existing Name in the ContainsPropertyData method of an AnalysisHintNode. If the Name field exists, the returned property data of type String populates myName (Visual Basic) ormyInkRecognizerGuideBaseByGuid(C#).

' Get the name of the analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForAnalysisHints.Name) Then

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

Platforms

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

PropertyGuidsForAnalysisHints Class
PropertyGuidsForAnalysisHints Members
System.Windows.Ink Namespace