PropertyGuidsForAnalysisHints.Factoid-Feld
Legt die GUID (Globally Unique Identifier) zum Abrufen oder Festlegen des String fest, das das Factoid in einem Analysehinweis darstellt.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)
Syntax
'Declaration
Public Shared ReadOnly Factoid As Guid
'Usage
Dim value As Guid
value = PropertyGuidsForAnalysisHints.Factoid
public static readonly Guid Factoid
public:
static initonly Guid Factoid
public static final Guid Factoid
public static final var Factoid : Guid
Hinweise
Dieses Feld stellt die Factoid-Klasse auf einem ContextNode vom Typ AnalysisHint dar.
Beispiele
Im folgenden Beispiel wird das Factoid-Feld veranschaulicht.
' 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);
}
Plattformen
Windows Vista
.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
PropertyGuidsForAnalysisHints-Klasse