Search
FlowChart.MultiSelStyle Property
See Also
 



Gets or sets a value indicating how multiple selection of items is drawn on the screen.

 Syntax

VB6  Copy Code

Public Property Get MultiSelStyle() As EMultiSelStyle
Public Property Let MultiSelStyle( _
    ByVal Value As EMultiSelStyle _
)

C++  Copy Code

public:
EMultiSelStyle get_MultiSelStyle ()
void put_MultiSelStyle (
    EMultiSelStyle value
)

 Property Value

A member of the EMultiSelStyle enumeration. The default is msSelHandles.

 Remarks

Controls how multiple-selection is represented:

  • msSelHandles - the selected objects are rendered with their selection handles;
  • msRectangle - a rectangle covering all selected objects is drawn;

 See Also