Xbasic

Exe

Description

The Exe object provides information about an executable.

Example

dim module as P
dim exe as P
dim name as C
module = type::Xbasicmodule.get_current()
exe  = module.executable()
name = exe.name()
ui_msg_box("Name of Current Script or Function",name)

Methods

Get_Current()

Get the current exe.

HasMethod()

Return true if the method exists.

InvokeInstanceMethod()

Invoke an instance method of an executable.

InvokeMethod()

Invoke a method of an executable.

Name()

Get an executable's unique name.

See Also