Método Selection.SendToBack (Visio)
Mueve la forma o las formas seleccionadas al final del orden z.
Sintaxis
expresión. SendToBack
Expresión Variable que representa un objeto Selection .
Valor devuelto
Nada
Ejemplo:
Esta macro de Microsoft Visual Basic para Aplicaciones (VBA) muestra cómo mover una forma al final del orden z en una página.
Public Sub SendToBack_Example()
Dim vsoShape1 As Visio.Shape
Dim vsoShape2 As Visio.Shape
Dim vsoShape3 As Visio.Shape
'Draw three rectangles.
Set vsoShape1 = ActivePage.DrawRectangle(1, 1, 5, 5)
vsoShape1.Text = "1"
Set vsoShape2 = ActivePage.DrawRectangle(2, 2, 6, 6)
vsoShape2.Text = "2"
Set vsoShape3 = ActivePage.DrawRectangle(3, 3, 7, 7)
vsoShape3.Text = "3"
'Move vsoShape3 to the back of the z-order.
vsoShape3.SendToBack
End Sub
Soporte técnico y comentarios
¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.