System.Windows.Forms.Clipboard.SetText C# (CSharp) 메소드

SetText() 공개 정적인 메소드

public static SetText ( string text ) : void
text string
리턴 void
		public static void SetText (string text)
		{
			if (string.IsNullOrEmpty (text))
				throw new ArgumentNullException ("text");
				
			SetData (DataFormats.UnicodeText, text);
		}
		

Same methods

Clipboard::SetText ( string text, TextDataFormat format ) : void

Usage Example

예제 #1
0
 protected override void EndProcessing()
 {
     ExecuteWrite(delegate
     {
         WinFormsClipboard.SetText(_output.ToString());
     });
 }
All Usage Examples Of System.Windows.Forms.Clipboard::SetText