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