PropertyGuidsForAnalysisHints.Name 字段
指定一个全局唯一标识符 (GUID),该 GUID 可用于获取和设置表示分析提示名称的 String。
命名空间: Microsoft.Ink
程序集: Microsoft.Ink.Analysis(在 Microsoft.Ink.Analysis.dll 中)
语法
声明
Public Shared ReadOnly Name As Guid
用法
Dim value As Guid
value = PropertyGuidsForAnalysisHints.Name
public static readonly Guid Name
public:
static initonly Guid Name
public static final Guid Name
public static final var Name : Guid
备注
此字段表示类型为 AnalysisHint 的 ContextNode 上的名称。
示例
下面的示例演示 Name 字段。
' 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
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0
另请参见
参考
PropertyGuidsForAnalysisHints 类