Search
ShapeListBox.ShapeSelected Event
See Also
 





Raised when the user selects a shape in the list box.

Namespace: MindFusion.Diagramming.WinForms
Assembly: MindFusion.Diagramming.WinForms.Controls

 Syntax

C#  Copy Code

public event EventHandler<ShapeEventArgs> ShapeSelected

Visual Basic  Copy Code

Public Event ShapeSelected As EventHandler(Of ShapeEventArgs)

 Event Data

ShapeSelected event handlers receive an argument of type ShapeEventArgs. The following ShapeEventArgs members provide information relevant to the event.

Member name

Description

Shape

Refers to a Shape instance that represents the selected shape.

Index

Indicates the shape position within the Items collection of the list box.

 See Also