Occurs when copying data.
Syntax
[Inline HTML]
<ELEMENT onCopyData = "handler" ...>
[Event Property]
FpSpread1.onCopyData = handler
[Named Script]
<SCRIPT FOR=FpSpread1 EVENT=onCopyData>
Arguments
- event.includeColHeader
- Include the column header
- event.spread
- Spread control that raises the event
Return Type
None
Remarks
This event is triggered when data is copied. Set the argument to true to copy the column header.
Example
This example JavaScript code maps the event for the Spread on the client side.
JavaScript | Copy Code |
---|---|
<script language="javascript" type="text/javascript"> window.onload = function () { var spread1 = document.getElementById("<%=FpSpread1.ClientID %>"); if (document.all) { // IE if (spread1.addEventListener) { // IE9 spread1.addEventListener("CopyData", copydata, false); } else { // Other versions of IE and IE9 quirks mode (no doctype set) spread1.onCopyData = copydata; } else { // Firefox spread1.addEventListener("CopyData", copydata, false); } } function copydata() { var event = window.event event.includeColHeader = false; } </SCRIPT> |