PropertyGuidsForAnalysisHints.SuffixText Field
Specifies the globally unique identifier (GUID) for getting and setting the String that represents the suffix text on an analysis hint.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)
Syntax
'Declaration
Public Shared ReadOnly SuffixText As Guid
'Usage
Dim value As Guid
value = PropertyGuidsForAnalysisHints.SuffixText
public static readonly Guid SuffixText
public:
static initonly Guid SuffixText
public static final var SuffixText : Guid
Remarks
In languages that have spaces between words, if the suffix text does not begin with a space, the ink analyzer analyzes the strokes in the hint as if the characters of the suffix text were a continuation of the strokes.
This field represents the suffix text on a ContextNode of type AnalysisHint.
Examples
The following example demonstrates the SuffixText field.
' Get suffix text used for analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.SuffixText) Then
Dim mySuffixText As String = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.SuffixText), String)
End If
// Get suffix text used for analysis hint
if (myAnalysisHintNode.ContainsPropertyData(
PropertyGuidsForAnalysisHints.SuffixText))
{
string myInkRecognizerGuideBaseByGuid =
(string)myAnalysisHintNode.GetPropertyData(
PropertyGuidsForAnalysisHints.SuffixText);
}
Platforms
Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information
.NET Framework
Supported in: 3.0
See Also
Reference
PropertyGuidsForAnalysisHints Class