Condividi tramite


Metodo ShapeContainer.GetNextShape

Recupera la forma successivo o precedente per ShapeCollection.

Spazio dei nomi:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Sintassi

'Dichiarazione
Public Function GetNextShape ( _
    shape As Shape, _
    forward As Boolean _
) As Shape
public Shape GetNextShape(
    Shape shape,
    bool forward
)
public:
Shape^ GetNextShape(
    Shape^ shape, 
    bool forward
)
member GetNextShape : 
        shape:Shape * 
        forward:bool -> Shape 
public function GetNextShape(
    shape : Shape, 
    forward : boolean
) : Shape

Parametri

  • forward
    Tipo: System.Boolean
    true per eseguire la ricerca; false per trovare il postback.

Valore restituito

Tipo: Microsoft.VisualBasic.PowerPacks.Shape
Nell'Shape per ShapeCollection.

Note

L'ordine iniziale è determinato dall'ordine in cui le forme vengono aggiunti a SetChildIndex ; è possibile modificare l'ordine chiamando di ShapeCollectionmetodo.

Esempi

Nell'esempio seguente viene illustrato come utilizzare SelectNextShape e di GetNextShape metodi per utilizzare il tasto TAB per spostarsi tra le forme su un form.Questo esempio richiede la presenza di almeno tre RectangleShape controlli in un form.

Private Sub Shapes_PreviewKeyDown(
    ByVal sender As Object, 
    ByVal e As System.Windows.Forms.PreviewKeyDownEventArgs
  ) Handles RectangleShape1.PreviewKeyDown, 
            RectangleShape2.PreviewKeyDown, 
            RectangleShape3.PreviewKeyDown

    Dim sh As Shape
    ' Check for the TAB key.
    If e.KeyCode = Keys.Tab Then
        ' Find the next shape in the order.
        sh = ShapeContainer1.GetNextShape(sender, True)
        ' Select the next shape.
        ShapeContainer1.SelectNextShape(sender, True, True)
    End If
End Sub
private void Shapes_PreviewKeyDown(object sender, 
    System.Windows.Forms.PreviewKeyDownEventArgs e)
{
    Shape sh;
    // Check for the TAB key.
    if (e.KeyCode==Keys.Tab)
        // Find the next shape in the order.
    {
        sh = shapeContainer1.GetNextShape((Shape) sender, true);
        // Select the next shape.
        shapeContainer1.SelectNextShape((Shape) sender, true, true);
    }
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

ShapeContainer Classe

Spazio dei nomi Microsoft.VisualBasic.PowerPacks

Altre risorse

Introduzione ai controlli Line e Shape (Visual Studio)

Procedura: disegnare linee con il controllo LineShape (Visual Studio)

Procedura: disegnare forme con i controlli OvalShape e RectangleShape (Visual Studio)