Packageflash.ui
Classpublic final class ContextMenuClipboardItems
InheritanceContextMenuClipboardItems Inheritance Object

The ContextMenuClipboardItems class lets you enable or disable the commands in the clipboard context menu.

Enable or disable the context menu clipboard commands using the clipboardItems property of the ContextMenu object. The clipboardItems property is an instance of this ContextMenuClipboardItems class. The clipboard context menu is shown in a context menu when the clipboardMenu property of the context menu is true, unless the context menu is for a TextField object. TextField objects control the display of the context menu and the state of its clipboard items automatically.

See also

ContextMenu.clipboardMenu


Public Properties
 PropertyDefined By
  clear : Boolean = false
Enables or disables the 'Delete' or 'Clear' item on the clipboard menu.
ContextMenuClipboardItems
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  copy : Boolean = false
Enables or disables the 'Copy' item on the clipboard menu.
ContextMenuClipboardItems
  cut : Boolean = false
Enables or disables the 'Cut' item on the clipboard menu.
ContextMenuClipboardItems
  paste : Boolean = false
Enables or disables the 'Paste' item on the clipboard menu.
ContextMenuClipboardItems
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  selectAll : Boolean = true
Enables or disables the 'Select All' item on the clipboard menu.
ContextMenuClipboardItems
Public Methods
 MethodDefined By
  
Creates a new ContextMenuClipboardItems object.
ContextMenuClipboardItems
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Property Detail
clearproperty
public var clear:Boolean = false

Enables or disables the 'Delete' or 'Clear' item on the clipboard menu. This should be enabled only if an object that can be cleared is selected.

copyproperty 
public var copy:Boolean = false

Enables or disables the 'Copy' item on the clipboard menu. This should be enabled only if an object that can be copied is selected.

cutproperty 
public var cut:Boolean = false

Enables or disables the 'Cut' item on the clipboard menu. This should be enabled only if an object that can be cut is selected.

pasteproperty 
public var paste:Boolean = false

Enables or disables the 'Paste' item on the clipboard menu. This should be enabled only if pastable data is on the clipboard.

selectAllproperty 
public var selectAll:Boolean = true

Enables or disables the 'Select All' item on the clipboard menu. This should only be enabled in a context where a selection can be expanded to include all similar items, such as in a list or a text editing control.

Constructor Detail
ContextMenuClipboardItems()Constructor
public function ContextMenuClipboardItems()

Creates a new ContextMenuClipboardItems object.