Exemple #1
0
 public void Clipboard(ClipboardEventType toDo)
 {
     m_linkedProcessUse.Send("clipboard:" + toDo.ToString().ToLower());
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new class of the ClipboardEventArgs
 /// </summary>
 /// <param name="newObject">Gets the object that was inputed into the clipboard</param>
 /// <param name="eventType">Gets the type of the event</param>
 public ClipboardEventArgs(IClipboardObject newObject, ClipboardEventType eventType)
 {
     NewObject = newObject;
     EventType = eventType;
 }