list=xtraVersion()
The function returns information about the XTRA dmmXLS. The function returns values in the format Abstract Data Types:
[#fileType: "Xtra (32)",
#CompanyName: "Studio dmm",
#FileDescription: "dmmXLS.x32",
#FileVersion: "1.8.0.17",
#InternalName: "dmmXLS.x32",
#LegalCopyRight: "© Studio dmm 1992-2005",
#LegalTradeMarks: "",
#OriginalFileName: "dmmXLS.x32",
#productName: "dmmXLS.x32",
#productVersion: "1.8.0.0"]
The meaning of the items is clear and it is not necessary to describe it closer.
ParametersThere are no parametres in this function.
Example - Director
global xls
xv=xls.xtraVersion()
put "FileDescription:" && xv.FileDescription
put "FileVersion:" && xv.FileVersion
Example - Authorwarexv:=CallObject(xls; "xtraVersion")
Trace("FileDescription: " ^ xv[#FileDescription])
Trace("FileVersion: " ^ xv[#FileVersion])