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. |
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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also