Search
FlowChart.SelectionOnTop Property
See Also
 



Gets or sets a value indicating whether selected items should be painted on top of other items.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_SelectionOnTop ()
void put_SelectionOnTop (
    bool value
)

 Property Value

A boolean value. The default is true.

 Remarks

If SelectionOnTop is enabled, selected items are painted over non-selected ones, ignoring the Z order position specified in ZIndex. If disabled, the items are painted as set in the Z order.

 See Also