Sets the information to paste from the Clipboard for a specified range of cells on this sheet based on the paste option.
Overload List
Overload | Description |
SetClipSpecial(Int32,Int32,Int32,Int32,Object,ClipboardPasteOptions) | Sets the information to paste from the Clipboard for a specified range of cells on this sheet based on the paste option. |
SetClipSpecial(Int32,Int32,Int32,Int32,Object,ClipboardPasteOptions,Boolean,Boolean) | Sets the information to paste from the Clipboard for a specified range of cells on this sheet based on the paste option. |
SetClipSpecial(Int32,Int32,Int32,Int32,Object,ClipboardPasteOptions,Boolean,Boolean,Boolean) | Sets the information to paste from the Clipboard for a specified range of cells on this sheet based on the paste option. |
Remarks
Example
This example sets the pasted information for a range of cells based on the ClipboardPasteOptions.
Visual Basic | Copy Code |
---|
FpSpread1.ActiveSheet.SetValue(0, 0, "SetClipSpecial")
Dim cells As New FarPoint.Win.Spread.CellInfoRange(0, 0)
FpSpread1.ActiveSheet.SetClipSpecial(0, 0, 0, 0, cells, FarPoint.Win.Spread.ClipboardPasteOptions.All) |
C# | Copy Code |
---|
fpSpread1.ActiveSheet.SetValue(0, 0, "SetClipSpecial");
FarPoint.Win.Spread.CellInfoRange cells = new FarPoint.Win.Spread.CellInfoRange(0, 0);
fpSpread1.ActiveSheet.SetClipSpecial(0, 0, 0, 0, cells, FarPoint.Win.Spread.ClipboardPasteOptions.All); |
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also