PropertyGuidsForAnalysisHints.Name 字段
指定一个全局唯一标识符 (GUID),该 GUID 可用于获取和设置表示分析提示名称的 String。
命名空间: System.Windows.Ink
程序集: IAWinFX(在 IAWinFX.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 上的名称。
示例
下面的示例在 AnalysisHintNode 的 ContainsPropertyData 方法中检查是否存在现有的 Name。如果 Name 字段存在,则用返回的类型为 String 的属性数据填充 myName (Visual Basic) 或 myInkRecognizerGuideBaseByGuid (C#)。
' Get the name of the analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.Name) Then
Dim myInkRecognizerGuideBaseByGuid As String = _
CStr(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.Name))
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 类