Cutting document's data to the Clipboard
// fdoc is initialized elsewhere
FileDocumentLib.IMultiSelection msel=fdoc.CreateEmptySelection(); // create an empty selection object
msel.AddRange(100,20); // add a first range to the selection
msel.AddRange(200,20); // add a second range to the selection
fdoc.Cut(msel,false); // place data to the clipboard