igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
47 lines (46 loc) • 1.71 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { Base, markType } from "igniteui-angular-core";
import { DataObject } from "igniteui-angular-core";
import { Clipboard } from "igniteui-angular-core";
import { DataFormats } from "igniteui-angular-core";
/**
* @hidden
*/
export let ClipboardHelper = /*@__PURE__*/ (() => {
class ClipboardHelper extends Base {
static d() {
return new DataObject();
}
static e() {
return Clipboard.c();
}
static c(a, b) {
Clipboard.a(a, b);
return true;
}
static b(a, b) {
let c = ClipboardHelper.a(a, b, DataFormats.d);
c = ClipboardHelper.a(a, b, DataFormats.a) || c;
c = ClipboardHelper.a(a, b, DataFormats.b) || c;
return c;
}
static a(a, b, c) {
try {
if (a.getDataPresent(c)) {
b.setData(c, a.getData(c));
return true;
}
}
catch (d) {
}
return false;
}
}
ClipboardHelper.$t = markType(ClipboardHelper, 'ClipboardHelper');
return ClipboardHelper;
})();