PropertyGuidsForAnalysisHintsBase.PrefixText - поле
Обновлен: Ноябрь 2007
Specifies the globally unique identifier (GUID) for getting and setting the prefix text on an analysis hint.
Пространство имен: System.Windows.Ink.AnalysisCore
Сборка: IACore (в IACore.dll)
Синтаксис
'Декларация
Public Shared ReadOnly PrefixText As Guid
'Применение
Dim value As Guid
value = PropertyGuidsForAnalysisHintsBase.PrefixText
public static readonly Guid PrefixText
public:
static initonly Guid PrefixText
public static final Guid PrefixText
public static final var PrefixText : Guid
Заметки
In languages that have spaces between words, if the prefix text does not end with a space, the ink analyzer analyzes the strokes in the hint as if they were a continuation of the characters of the prefix text.
This field represents the prefix text on a ContextNode of type AnalysisHint.
Примеры
The following example demonstrates the PrefixText field.
' Get prefix text used for analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.PrefixText) Then
Dim myPrefixText = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.PrefixText), String)
End If
// Get prefix text used for analysis hint
if (myAnalysisHintNode.ContainsPropertyData(PropertyGuidsForAnalysisHints.PrefixText))
{
string myInkRecognizerGuideBaseByGuid =
(string)myAnalysisHintNode.GetPropertyData(PropertyGuidsForAnalysisHints.PrefixText);
}
Платформы
Windows Vista, Windows XP с пакетом обновления 2 (SP2), Windows Server 2003
Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.
Сведения о версии
.NET Framework
Поддерживается в версии: 3.0
См. также
Ссылки
PropertyGuidsForAnalysisHintsBase Класс