Table of Contents

CANCOPY property (EditTable)

Description

Specifies if a Clipboard COPY operation can be performed. The copy is allowed if one of the following criteria is met:

• If a current cell is being edited and has text selected (as per the EDITLINE control CANCOPY property).

• If one or more rows are selected.

• If the control has a valid current cell (but is not being edited) that is not a button type cell.

Property Value

The CANCOPY property is a Boolean value of TRUE$ or FALSE$. If TRUE$ then the control will allow a Clipboard copy operation.

Property Traits

DevelopmentRuntimeIndexedScaledSynthetic
NoGetNoNoNo

Remarks

N/A

Example

 
//// Example: Determine if a copy operation is possible on the MY_TABLE//
   //// EditTable control//
   
   CopyEnabled = Get_Property( @window : ".MY_TABLE", "CANCOPY" )
 
 
 
 
 

See Also

CANCUT property, CANPASTE property, CANUNDO property, COPY method, CUT method, PASTE method, UNDO method, CLIPBOARD object