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
파일 보기 프로젝트 열기: inthehand/Charming

공개 메소드들

메소드 설명
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