Search
FlowChart.KbdActive Property
See Also
 



Gets or sets a value indicating whether users are allowed to modify the diagram using keyboard.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_KbdActive ()
void put_KbdActive (
    bool value
)

 Property Value

A boolean value. The default is true.

 Remarks

If set to false FlowChartX does not respond to keyboard input, otherwise the following keyboard combinations are enabled:

Shortcut

Description

CTRL+C

Copies the current selection to the Windows clipboard.

CTRL+X

Cuts the current selection to the Windows clipboard.

CTRL+V

Copies flowchart data from the Windows clipboard if available; raises the ItemsPasted event.

CTRL+Z

Undoes the last modification of the flowchart document; raises the ActionUndone event.

CTRL+Y

Redoes an action that was previously undone; raises the ActionRedone event.

DEL

Deletes the currently active element (marked with white modification handles); raises ArrowDeleted, BoxDeleted or TableDeleted.

 See Also