Plugins (XSIApplication)

Introduced

4.0

Description

Returns a collection of all self-installable plug-ins currently loaded in Softimage as a PluginCollection.

C# Syntax

// get accessor
PluginCollection rtn = XSIApplication.Plugins;

Examples

VBScript Example

'
'  This example displays information for all loaded plug-ins
'
set plgs = Application.Plugins
for each p in plgs
   LogMessage "Name: "  & p.Name
   LogMessage "Author: "  & p.Author
   LogMessage "Major: "  & p.Major
   LogMessage "Minor: "  & p.Minor
   LogMessage "Language: " & p.Language
   LogMessage "Filename: " & p.Filename
   LogMessage "URL: "  & p.URL
   LogMessage "Email: "  & p.Email
   LogMessage "Loaded: "  & p.Loaded
next

See Also

XSIApplication.LoadPlugin

XSIApplication.UnloadPlugin

Plugin

Callbacks for Self-installing Plug-ins



Autodesk Softimage v7.5