Addon.DefaultInstallationPath

説明

このアドオンのデフォルトのインストールフォルダ(siInstallationPath)を設定したり、戻したりします(デフォルトでは siUserPath)。アドオンをインストールするときに、異なるフォルダを選択することもできます。

注:アドオンを Softimage にドラッグするときに、デフォルトのインストールフォルダが自動的に使用されます。

C#構文

// get accessor

siInstallationPath rtn = Addon.DefaultInstallationPath;

// set accessor

Addon.DefaultInstallationPath = siInstallationPath;

VBScript の例

'

' This example shows how to set the path that appears by 

' default during installation of the add-on.

'

' Create a toolbar to use in the add-on package

CreateToolbar "MyToolbarAddonTest"

' Create the add-on package object

set oAddOn = Application.CreateAddon

' Set the default installation folder to the workgroup path

oAddOn.DefaultInstallationPath = siWorkgroupAddonPath

' Add the toolbar to the add-on package 

oAddOn.AddItem siToolbarAddonItemType, "MyToolbarAddonTest"

' You typically always specify a subdirectory

oAddon.SubDirectory = "MyToolbarAddon"

' Save the package in the Addons directory

oAddOn.Save XSIUtils.BuildPath( InstallationPath( siUserPath ), "Addons", "myAddOn.xsiaddon" )