本文整理汇总了TypeScript中@ionic-native/clipboard.Clipboard类的典型用法代码示例。如果您正苦于以下问题:TypeScript Clipboard类的具体用法?TypeScript Clipboard怎么用?TypeScript Clipboard使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Clipboard类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: clear
public clear(): void {
if (this.isCordova) {
this.clipboard.copy(null);
} else if (this.isNW) {
this.nodeWebkitProvider.clearClipboard();
}
}
示例2: clear
public clear(): void {
if (this.isCordova) {
this.clipboard.copy(null);
} else if (this.isElectron) {
this.electronProvider.clearClipboard();
}
}
示例3: copy
public copy(value: string) {
if (this.isCordova) {
this.clipboard.copy(value);
} else if (this.isNW) {
this.nodeWebkitProvider.writeToClipboard(value);
} else {
throw new Error('Copied to Clipboard using a Web Browser.');
}
}
示例4: getData
public async getData(): Promise<any> {
if (this.isCordova) {
return this.clipboard.paste();
} else if (this.isElectron) {
return this.electronProvider.readFromClipboard();
} else {
return Promise.reject('Not supported');
}
}
示例5: paste
private async paste(): Promise<any> {
if (this.isCordova) {
return this.clipboard.paste();
} else if (this.isNW) {
return this.nodeWebkitProvider.readFromClipboard();
} else {
this.logger.warn('Paste from clipboard not supported');
return;
}
}
示例6: copyClipboard
/**
* 复制到剪贴板
* @param options
* @constructor
*/
copyClipboard(text) {
return this.clipboard.copy(text);
}