Edit Commands

Edit Commands

Standard editing commands.

copy

Syntax:

void copy(); 

Copy the current atom selection to the clipboard, ready for pasting.

For example:

copy();

cut

Syntax:

void cut(); 

Cut the current atom selection to the clipboard.

For example:

cut();

delete

Syntax:

void delete(); 

Delete the current atom selection.

For example:

delete();

paste

Syntax:

void paste(); 

Paste the copied atom selection.

For example:

paste();

redo

Syntax:

void redo(); 

Redo the last 'undone' operation.

For example:

redo();

undo

Syntax:

void undo(); 

Undo the last operation.

For example:

undo();