constants group DNDConstants in module com::sun::star::datatransfer::dnd::

(Global Index)

Syntax

constants group DNDConstants;

Description

These values represent the type of action or actions to be performed by a Drag and Drop operation.

Constants Summary

ACTION_NONE No action.

ACTION_COPY Action copy.

ACTION_MOVE Action move.

ACTION_COPY_OR_MOVE Action copy or move.

ACTION_LINK Action link.

ACTION_REFERENCE Action reference.

ACTION_DEFAULT Action default.

Field Details



ACTION_NONE

Syntax

const byte  ACTION_NONE = 0x00;

Description

No action.


ACTION_COPY

Syntax

const byte  ACTION_COPY = 0x01;

Description

Action copy.


ACTION_MOVE

Syntax

const byte  ACTION_MOVE = 0x02;

Description

Action move.


ACTION_COPY_OR_MOVE

Syntax

const byte  ACTION_COPY_OR_MOVE = 0x03;

Description

Action copy or move.


ACTION_LINK

Syntax

const byte  ACTION_LINK = 0x04;

Description

Action link.


ACTION_REFERENCE

Syntax

const byte  ACTION_REFERENCE = 0x04;

Description

Action reference.


ACTION_DEFAULT

Syntax

const byte  ACTION_DEFAULT = 0x80;

Description

Action default.

Top of Page