Search
FlowChart.AddToSelection Method
See Also
 



Adds a diagram element to multiple selection.

 Syntax

VB6  Copy Code

Public Sub AddToSelection( _
    ByVal pItem As Object _
)

C++  Copy Code

public:
void AddToSelection (
    IDispatch* pItem
)

 Parameters

pItem
A reference to the diagram item to be selected - box, table or arrow.

 Remarks

Adds a diagram element to the current selection. If the item is already selected, nothing happens. If object is not a reference to an Arrow, Box or Table object or if it is null (Nothing in Visual Basic) the returned HRESULT value is S_FALSE.

 See Also