C# Class Cimbalino.Phone.Toolkit.Services.ClipboardService

Represents an implementation of the IClipboardService.
Inheritance: IClipboardService
Show file Open project: Cimbalino/Cimbalino-Phone-Toolkit

Public Methods

Method Description
ContainsText ( ) : bool

Queries the clipboard for the presence of data in the UnicodeText format.

SetText ( string text ) : void

Sets Unicode text data to store on the clipboard.

Method Details

ContainsText() public method

Queries the clipboard for the presence of data in the UnicodeText format.
public ContainsText ( ) : bool
return bool

SetText() public method

Sets Unicode text data to store on the clipboard.
Invoked this method from outside a user-initiated context -or- Clipboard access user dialog box was not confirmed.
public SetText ( string text ) : void
text string A string that contains the Unicode text data to store on the clipboard.
return void