Shape.Enter Event

Occurs when the shape is entered.

Namespace:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntax

'Declaration
<BrowsableAttribute(True)> _
Public Event Enter As EventHandler
[BrowsableAttribute(true)]
public event EventHandler Enter
[BrowsableAttribute(true)]
public:
 event EventHandler^ Enter {
    void add (EventHandler^ value);
    void remove (EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member Enter : IEvent<EventHandler,
    EventArgs>
JScript does not support events.

Remarks

When you change the focus by using the keyboard (TAB, SHIFT+TAB, and so on), or by calling the Select or SelectNextControl method, focus events occur in the following order:

Enter

GotFocus

Leave

LostFocus

When you change the focus by using the mouse or by calling the Focus method, focus events occur in the following order:

Enter

GotFocus

LostFocus

Leave

For more information about how to handle events, see Consuming Events.

Examples

The following example shows how to respond to the Enter event in an event handler. This example requires that you have a RectangleShape control named RectangleShape1 on a form.

Private Sub RectangleShape1_Enter(
  ) Handles RectangleShape1.Enter

    MsgBox("The rectangle has been selected.")
End Sub
private void rectangleShape1_Enter(object sender, System.EventArgs e)
{
    MessageBox.Show("The rectangle has been selected.");
}

.NET Framework Security

See Also

Reference

Shape Class

Microsoft.VisualBasic.PowerPacks Namespace

Other Resources

How to: Draw Lines with the LineShape Control (Visual Studio)

How to: Draw Shapes with the OvalShape and RectangleShape Controls (Visual Studio)

Introduction to the Line and Shape Controls (Visual Studio)