Freigeben über


PropertyGuidsForAnalysisHintsBase.Factoid Field

Specifies the globally unique identifier (GUID) for getting or setting the String that represents the Factoid on an analysis hint.

Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in iacore.dll)

Syntax

'Declaration
Public Shared ReadOnly Factoid As Guid
'Usage
Dim value As Guid

value = PropertyGuidsForAnalysisHintsBase.Factoid
public static readonly Guid Factoid
public:
static initonly Guid Factoid
public static final Guid Factoid
public static final var Factoid : Guid
Not applicable.

Remarks

This field represents the Factoid class on a ContextNode of type AnalysisHint.

Example

The following example demonstrates the Factoid field.

' Get factoid for analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForAnalysisHints.Factoid) Then
    Dim myFactoid = _
        CType(myAnalysisHintNode.GetPropertyData( _
        PropertyGuidsForAnalysisHints.Factoid), Factoid)
End If
// Get factoid for analysis hint
if (myAnalysisHintNode.ContainsPropertyData(PropertyGuidsForAnalysisHints.Factoid))
{
    Factoid myFactoid =
        (Factoid)myAnalysisHintNode.GetPropertyData(PropertyGuidsForAnalysisHints.Factoid);
}

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

PropertyGuidsForAnalysisHintsBase Class
PropertyGuidsForAnalysisHintsBase Members
System.Windows.Ink.AnalysisCore Namespace