TextPattern.TabsAttribute 欄位
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
識別文字範圍的 Tabs
屬性。
public: static initonly System::Windows::Automation::AutomationTextAttribute ^ TabsAttribute;
public static readonly System.Windows.Automation.AutomationTextAttribute TabsAttribute;
staticval mutable TabsAttribute : System.Windows.Automation.AutomationTextAttribute
Public Shared ReadOnly TabsAttribute As AutomationTextAttribute
欄位值
範例
下列範例示範如何在Microsoft記事本中取得文字範圍的屬性值。
注意
Microsoft記事本僅供參考的文字提供者使用。 Microsoft記事本不保證支援所要求的屬性值。
private void GetTabsAttribute()
{
// Start application.
Process p = Process.Start("Notepad.exe", "text.txt");
// target --> The root AutomationElement.
AutomationElement target = AutomationElement.FromHandle(p.MainWindowHandle);
// Specify the control type we're looking for, in this case 'Document'
PropertyCondition cond = new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Document);
AutomationElement textProvider = target.FindFirst(TreeScope.Descendants, cond);
TextPattern textpatternPattern = textProvider.GetCurrentPattern(TextPattern.Pattern) as TextPattern;
if (textpatternPattern == null)
{
Console.WriteLine("Root element does not contain a descendant that supports TextPattern.");
return;
}
Object oAttribute = textpatternPattern.DocumentRange.GetAttributeValue(TextPattern.TabsAttribute);
if (oAttribute == TextPattern.MixedAttributeValue)
{
Console.WriteLine("Mixed tabs.");
}
else
{
Console.WriteLine(oAttribute.ToString());
}
}
Private Sub GetTabsAttribute()
' Start application.
Dim p As Process = Process.Start("Notepad.exe", "text.txt")
' target --> The root AutomationElement.
Dim target As AutomationElement = AutomationElement.FromHandle(p.MainWindowHandle)
' Specify the control type we're looking for, in this case 'Document'
Dim cond As PropertyCondition = New PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Document)
Dim textProvider As AutomationElement = target.FindFirst(TreeScope.Descendants, cond)
Dim textpatternPattern As TextPattern = CType(textProvider.GetCurrentPattern(TextPattern.Pattern), TextPattern)
If (textpatternPattern Is Nothing) Then
Console.WriteLine("Root element does not contain a descendant that supports TextPattern.")
Return
End If
Dim oAttribute As Object = textpatternPattern.DocumentRange.GetAttributeValue(TextPattern.TabsAttribute)
If (oAttribute = TextPattern.MixedAttributeValue) Then
Console.WriteLine("Mixed tabs.")
Else
Console.WriteLine(oAttribute.ToString())
End If
End Sub
備註
此屬性代表定位停駐點的集合,以點為單位 (GraphicsUnit) 。
消費者介面自動化用戶端應用程式會使用此識別碼。 消費者介面自動化提供者應該使用 中的 TextPatternIdentifiers 對等欄位。
消費者介面自動化用戶端藉由呼叫 GetAttributeValue 來取得 屬性的值。
這個屬性的值是 類型的 Double 陣列。 預設值為 empty
陣列。