C# Класс InTheHand.ApplicationModel.DataTransfer.Clipboard

Gets and sets information from the clipboard object.
PlatformVersion supported AndroidAndroid 4.4 and later iOSiOS 9.0 and later macOSOS X 10.7 and later Windows UWPWindows 10 Windows StoreWindows 8.1 or later Windows Phone StoreWindows Phone 8.1 or later Windows Phone SilverlightWindows Phone 8.0 or later Windows (Desktop Apps)Windows Vista or later
Показать файл Открыть проект

Открытые методы

Метод Описание
Clear ( ) : void

Removes all data from the Clipboard.

GetContent ( ) : DataPackageView

Gets the current content that is stored in the clipboard object.

SetContent ( DataPackage content ) : void

Sets the current content that is stored in the clipboard object.

Приватные методы

Метод Описание
Clipboard ( ) : System
EmptyClipboard ( ) : void
GetText ( ) : string
SetText ( string text ) : void

Описание методов

Clear() публичный статический Метод

Removes all data from the Clipboard.
public static Clear ( ) : void
Результат void

GetContent() публичный статический Метод

Gets the current content that is stored in the clipboard object.
public static GetContent ( ) : DataPackageView
Результат DataPackageView

SetContent() публичный статический Метод

Sets the current content that is stored in the clipboard object.
public static SetContent ( DataPackage content ) : void
content DataPackage Contains the content of the clipboard. /// If NULL, the clipboard is emptied.
Результат void