Package | flash.desktop |
Class | public class ClipboardTransferMode |
Inheritance | ClipboardTransferMode ![]() |
Language Version : | ActionScript 3.0 |
transferMode
parameter of the Clipboard.getData()
method.
The transfer mode provides a hint about whether to return a reference or a copy when accessing an object contained on a clipboard.
See also
Constant | Defined By | ||
---|---|---|---|
![]() [static]
The Clipboard object should only return a copy.
| ClipboardTransferMode | ||
![]() [static]
The Clipboard object should return a copy if available and a reference if not.
| ClipboardTransferMode | ||
![]() [static]
The Clipboard object should only return a reference.
| ClipboardTransferMode | ||
![]() [static]
The Clipboard object should return a reference if available and a copy if not.
| ClipboardTransferMode |
![]() | Constant |
public static const CLONE_ONLY:String = "cloneOnly"
The Clipboard object should only return a copy.
![]() | Constant |
public static const CLONE_PREFERRED:String = "clonePreferred"
The Clipboard object should return a copy if available and a reference if not.
![]() | Constant |
public static const ORIGINAL_ONLY:String = "originalOnly"
The Clipboard object should only return a reference.
![]() | Constant |
public static const ORIGINAL_PREFERRED:String = "originalPreferred"
The Clipboard object should return a reference if available and a copy if not.