SMART datagrid v.1 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.copyEnabled  property

If it is true, the user can copy the value of cell area which has been selected by ctrl+c keys to clipboard during run time. 

Defaults to true.

Getter
function copyEnabled(): Boolean
Setter
function setCopyEnabled(value: Boolean)
Code -1
    grid.setOptions({
        edit: {
            copyEnabled: true
        }
    });
Code -2
    grid.setEditOptions({
        copyEnabled: true
    });
Code -3
    grid.editOptions().setCopyEnabled(true);
See Also
pasteEnabled
copyBooleanFormat
copyDatetimeFormat
Examples
Clipboard Copy