Источник:
http://palleagermark.blogspot.com/20...etcopy-in.html
==============
This is how the method should be implemented:
X++:
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);
}
Источник:
http://palleagermark.blogspot.com/20...etcopy-in.html