Spread Silverlight Documentation
ClipboardPaste(CellRange) Method
Example 


The pasted cell range on the sheet.
Pastes content from the Clipboard to a cell range on the sheet.
Syntax
'Declaration
 
Public Overloads Sub ClipboardPaste( _
   ByVal range As CellRange _
) 
'Usage
 
Dim instance As SheetView
Dim range As CellRange
 
instance.ClipboardPaste(range)
public void ClipboardPaste( 
   CellRange range
)

Parameters

range
The pasted cell range on the sheet.
Example
This example uses the ClipboardPaste method.
GcSpreadSheet1.Sheets[0].Cells[0, 0].Text = "Copy";
GcSpreadSheet1.View.ClipboardCopy(new GrapeCity.Windows.SpreadSheet.Data.CellRange(0, 0, 1, 1));
GcSpreadSheet1.View.ClipboardPaste(new GrapeCity.Windows.SpreadSheet.Data.CellRange(2, 2, 1, 1));
GcSpreadSheet1.Sheets(0).Cells(0, 0).Text = "Copy"
GcSpreadSheet1.View.ClipboardCopy(new GrapeCity.Windows.SpreadSheet.Data.CellRange(0, 0, 1, 1))
GcSpreadSheet1.View.ClipboardPaste(new GrapeCity.Windows.SpreadSheet.Data.CellRange(2, 2, 1, 1))
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

SheetView Class
SheetView Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.