C# Class ScreenToGif.Util.Clipboard

Show file Open project: dbremner/ScreenToGif

Private Properties

Property Type Description
Prepare void
PrepareCurrent void

Public Methods

Method Description
Copy ( List target ) : bool

Copies the selected frames to a Clipboard folder.

Cut ( List target ) : bool

Cuts the selected frames to a Clipboard folder.

Paste ( int index, int pasteIndex ) : List

Copies the selected frames to a Clipboard folder.

Remove ( int index ) : void

Removes the item from the clipboard.

Private Methods

Method Description
Prepare ( string imageLocation ) : void
PrepareCurrent ( string imageLocation ) : void

Method Details

Copy() public static method

Copies the selected frames to a Clipboard folder.
public static Copy ( List target ) : bool
target List The selected frames.
return bool

Cut() public static method

Cuts the selected frames to a Clipboard folder.
public static Cut ( List target ) : bool
target List The selected frames.
return bool

Paste() public static method

Copies the selected frames to a Clipboard folder.
public static Paste ( int index, int pasteIndex ) : List
index int
pasteIndex int
return List

Remove() public static method

Removes the item from the clipboard.
public static Remove ( int index ) : void
index int The index to be removed.
return void