Search
FlowChart.ModificationStart Property
See Also
 



Gets or sets how users can start modifying diagram items.

 Syntax

VB6  Copy Code

Public Property Get ModificationStart() As EModificationStyle
Public Property Let ModificationStart( _
    ByVal Value As EModificationStyle _
)

C++  Copy Code

public:
EModificationStyle get_ModificationStart ()
void put_ModificationStart (
    EModificationStyle value
)

 Property Value

A member of the EModificationStyle enumeration. The default is mdSelectedOnly.

 Remarks

Sets the way users can modify items. In order to manipulate an item, a user must drag its manipulation handles. This property defines when these handles are available. Possible values are:

  • mdSelectedOnly - the handles are drawn around selected object only, so to modify an object the user has to select it first.
  • mdAutoHandles - the handles are drawn around an object when the user points to it with the mouse. The user can modify an object without having first to select it.

 See Also