ScriptInitData
The ScriptInitData object is passed to the OnInit event in a script add-in. The script should initialize the various properties to identify itself, and can optionally add internal commands using the AddCommand method, and custom columns using the AddColumn method, before returning.
config
config_desc
config_groups
copyright
string
Lets the script specify a copyright message that is displayed to the user in Preferences.
default_enable
bool
Set this to True if the script should be enabled by default, or False if it should be disabled by default. The user can enable or disable scripts using Preferences - this simply controls the default state.
desc
string
Lets the script specify a description message that is displayed to the user in Preferences.
early_dblclk
bool
file
string
Returns the path and filename of this script.
group
string
Lets you specify an arbitrary group for this script. If scripts specify a group they will be displayed in that group in the list in Preferences.
log_prefix
string
Lets the script specify a string that will be prepended to any log output it performs. If not set the name of the script is used by default.
min_version
string
Specifies the minimum Opus version required. If the current version is less than the specified version the script will be disabled. You can specify the major version only (e.g. "11"), a major and minor version (e.g. "11.3") or a specific beta version (e.g. "11.3.1" for 11.3 Beta 1).
name
string
Lets the script specify a display name for the script that is shown in Preferences.
startup
bool
The OnInit method is called in two different circumstances - once during Opus startup, and again if the script is installed or edited when Opus is already running. This property will return True if the OnInit method is being called during Opus startup, or False for any other time.
url
string
Lets you provide a URL where the user can go to find out more about your script (it's displayed to the user in Preferences).
vars
version
string
Lets the script specify a version number string that is displayed to the user in Preferences.
Method Name
Arguments
Return Type
Description
AddColumn
none
AddCommand
none
最后更新于