SMART datagrid v1.4 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.copyEnabled  property

true면 사용자가 실행 시간에 ctrl+c 키로 선택된 셀 영역의 값을 클립보드로 복사할 수 있다. 

기본값은 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
클립보드 복사