Gets or sets a value indicating whether users are allowed to modify the diagram using keyboard.
SyntaxVB6
Copy Code
|
|---|
Public Property Get KbdActive() As Boolean |
C++
Copy Code
|
|---|
public: |
A boolean value. The default is true.
RemarksIf 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