现有一个dll文件 plugocr.dll

这个文件接口说明是这样的

//属性:
property FontColor;//string,设置字体颜色
property BGColor;//string,设置背景颜色
property Dict;//string,设置字库地址
property MaxChrWidth;//integer,最大字体宽度
property PicPath;//string,图片路径
//方法:
function OCR(x1,y1,x2,y2);//string,返回识别到的文字
function FindStr(CharStr, x1,y1,x2,y2); //integer,查找字串
function FindChar(CharStr, x1,y1,x2,y2); //integer,查找文字

请教各位大大 怎么在一个传统的线性脚本语言中调用这个dll的函数 ,如何传递给这个dll中的函数的属性,比方传递给Dict这个属性,
在传统的线性脚本语言中类似于 dim aa
                             set aa=createobject("PlugOCR.OCR") 
                             aa.Dict="Default_Dict.txt" 
这样的语句无法使用,关键颜色,文件位置等属性怎么传递进去?
谢谢各位!