Share via


TextPattern.IndentationTrailingAttribute 欄位

定義

識別文字範圍的 IndentationTrailing (TextIndent) 屬性。

public: static initonly System::Windows::Automation::AutomationTextAttribute ^ IndentationTrailingAttribute;
public static readonly System.Windows.Automation.AutomationTextAttribute IndentationTrailingAttribute;
 staticval mutable IndentationTrailingAttribute : System.Windows.Automation.AutomationTextAttribute
Public Shared ReadOnly IndentationTrailingAttribute As AutomationTextAttribute 

欄位值

範例

下列範例示範如何在Microsoft記事本中取得文字範圍的屬性值。

注意

Microsoft記事本僅供參考的文字提供者使用。 Microsoft記事本不保證支援所要求的屬性值。

private void GetIndentationTrailingAttribute()
{
    // 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.IndentationTrailingAttribute);
    if (oAttribute == TextPattern.MixedAttributeValue)
    {
        Console.WriteLine("Mixed trailing indentation.");
    }
    else
    {
        Console.WriteLine(oAttribute.ToString());
    }
}
Private Sub GetIndentationTrailingAttribute()
    ' 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.IndentationTrailingAttribute)
    If (oAttribute = TextPattern.MixedAttributeValue) Then
        Console.WriteLine("Mixed trailing indentations.")
    Else
        Console.WriteLine(oAttribute.ToString())
    End If
End Sub

備註

這個屬性代表 () 套用至與呼叫文字範圍相關聯之段落 () 的點 GraphicsUnit 尾端縮排。

消費者介面自動化用戶端應用程式會使用此識別碼。 消費者介面自動化提供者應該使用 中的 TextPatternIdentifiers 對等欄位。

消費者介面自動化用戶端藉由呼叫 GetAttributeValue 來取得 屬性的值。

這個屬性的值的類型為 Double 。 預設值是 zero

適用於

另請參閱