TextPatternRange.GetBoundingRectangles Método
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Recupera uma coleção de retângulos delimitados para cada linha de texto totalmente ou parcialmente visível num intervalo de texto.
public:
cli::array <System::Windows::Rect> ^ GetBoundingRectangles();
public System.Windows.Rect[] GetBoundingRectangles();
member this.GetBoundingRectangles : unit -> System.Windows.Rect[]
Public Function GetBoundingRectangles () As Rect()
Devoluções
Um array de retângulos delimitadores para cada linha completa ou parcial de texto num intervalo de texto.
Um array vazio para um intervalo de texto degenerado.
Um array vazio para um intervalo de texto cujas coordenadas de ecrã o colocam completamente fora do ecrã, deslocado fora de vista ou obscurecido por uma janela sobreposta.
Exemplos
private Rect[] BoundingRectanglesFromSelection(AutomationElement target)
{
// Specify the control type we're looking for, in this case 'Document'
PropertyCondition cond = new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Document);
// target --> The root AutomationElement.
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 null;
}
TextPatternRange[] currentSelection = textpatternPattern.GetSelection();
return currentSelection[0].GetBoundingRectangles();
}
Private Function BoundingRectanglesFromSelection(ByVal target As AutomationElement) As Rect()
' Specify the control type we're looking for, in this case 'Document'
Dim cond As PropertyCondition = New PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Document)
' target --> The root AutomationElement.
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 Nothing
End If
Dim currentSelection As TextPatternRange() = textpatternPattern.GetSelection()
Return currentSelection(0).GetBoundingRectangles()
End Function