public void copy(SysExcelWorksheet _before = null, SysExcelWorksheet _after = null)
{
anytype before, after;
;
if (_before)
before = _before.comObject();
else
before = COMArgument::NoValue;
if (_after)
after = _after.comObject();
else
after = COMArgument::NoValue;
worksheet.copy(before, after);
}
Wednesday, September 23, 2009
Implement WorkSheet.Copy in \Classes\SysExcelWorksheet
This is how the method should be implemented:
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment