Declaration Parameters Return Value Example
| Declarationobject.AboutModel(info)

Parameters
- object
- Required. Always the name of a R2DToo.FrontEnd object.
- info
- Required. One of "name", "version", "copyright", "comments", or "url" (case insensitive).

Return Value
A character string returning the appropriate information about the model. If info not found, returns an empty string, "".

Example' [VBScript]
' load
Dim R2DToo
Set R2DToo = Wscript.CreateObject("R2DToo.FrontEnd")
' demonstrate method
WScript.Echo "R2DToo loaded with model: " & R2DToo.AboutModel("Name") & " " & R2DToo.AboutModel("Version")
' unload
Set R2DToo = nothing
|