本文整理匯總了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);
}