ActiveX NoticeBytescout Spreadsheet SDK

ActiveX version notice

This notice provides information about using the SDK through ActiveX interface (from VB6, VBScript, Classic ASP)

For full ActiveX documentation check DocumentationActiveX.chm in c:\program files\Bytescout SDK\

Most classes, members, properties are accessible through ActiveX interface but there are some differences:

1) Collections are accessible through .item(index) function

.NET :

Columns[1].Width = 100

ActiveX:

Columns.item(1).width = 100

2) Overrided methods (functions with same name but different set of parameters) represented in ActiveX this way:

.NET:

MyMethod(param1)

MyMethod(param1, param2)

MyMethod(param1, param2, param3)

ActiveX:

MyMethod(param1)

MyMethod_2(param1, param2)

MyMethod_3(param1, param2, param3)