Selection.BringToFront-Methode (Visio)
Verschiebt das Shape oder ausgewählte Shapes in der Z-Reihenfolge nach vorn.
Syntax
Ausdruck. Bringtofront
Ausdruck Eine Variable, die ein Selection-Objekt darstellt.
Rückgabewert
Nichts
Beispiel
Mit dem folgenden Makro wird gezeigt, wie ein Shape auf einem Zeichenblatt in der Z-Reihenfolge nach vorn verschoben wird.
Public Sub BringToFront_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, 4, 4)
vsoShape1.Text = "1"
Set vsoShape2 = ActivePage.DrawRectangle(2, 2, 5, 5)
vsoShape2.Text = "2"
Set vsoShape3 = ActivePage.DrawRectangle(3, 3, 6, 6)
vsoShape3.Text = "3"
'Bring vsoShape1 to the front of the z-order.
vsoShape1.BringToFront
End Sub
Support und Feedback
Haben Sie Fragen oder Feedback zu Office VBA oder zu dieser Dokumentation? Unter Office VBA-Support und Feedback finden Sie Hilfestellung zu den Möglichkeiten, wie Sie Support erhalten und Feedback abgeben können.