Search
FlowChart.AllowMultiSel Property
See Also
 



Gets or sets a value indicating whether multiple selection is enabled.

 Syntax

VB6  Copy Code

Public Property Get AllowMultiSel() As Boolean
Public Property Let AllowMultiSel( _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_AllowMultiSel ()
void put_AllowMultiSel (
    bool value
)

 Property Value

A boolean value. The default is true.

 Remarks

Specifies if more than one object can be selected at once by a user. Set the property to false to disable multiple-selection. It is always possible to selected multiple items using the AddToSelection method.

 See Also