Method | Description | |
---|---|---|
ClipboardGetData ( ) : |
Get a RangeData object from the clipboard. Return null if the clipboard doesn't contains valid data formats.
|
|
ClipboardSetData ( |
Copy the specified RangeData object the the clipboard
|
|
FindDestinationRange ( |
Calculate the destination range for the drop or paste operations.
|
|
LoadData ( |
Load the specified range data into a string array. This method use the cell editor to get the value.
|
|
LoadData ( string data ) : void |
Load the data from a Tab delimited string of data. Each column is separated by a Tab and each row by a LineFeed character.
|
|
WriteData ( |
Write the current loaded array string in the specified grid range. This method use the cell editor to set the value.
|
Method | Description | |
---|---|---|
DataToString ( string values, |
Convert a range and an array of string into a string. Normally using a tab delimited for columns and a LineFeed for rows.
|
|
StringToData ( string data, |
Convert a string buffer into a Range object and an array of string.
|
Method | Description | |
---|---|---|
RangeData ( ) : System |
Static constructor
|
public static ClipboardGetData ( ) : |
||
return |
public static ClipboardSetData ( |
||
rangeData | ||
return | void |
protected DataToString ( string values, |
||
values | string | |
range | ||
return | string |
public FindDestinationRange ( |
||
destinationGrid | ||
dropDestination | ||
return |
public LoadData ( |
||
sourceGrid | ||
sourceRange | ||
startDragPosition | Starting drag position. Used only for calculating drop destination range. | |
cutMode | CutMode | Cut mode. Can be used to remove the data from the source when pasting it to the destination or immediately. |
return | void |
protected StringToData ( string data, |
||
data | string | |
range | ||
values | string | |
return | void |
public WriteData ( |
||
destinationGrid | ||
destinationRange | ||
return | void |