AddImageClipFxOp

導入

v3.0

詳細

接続されていない新しいイメージ クリップの FxOperatorFxTree オブジェクトに追加します。

スクリプト構文

oReturn = AddImageClipFxOp( [FxTree], [ImageClip] );

戻り値

FxOperator

パラメータ

パラメータ タイプ 説明
FxTree String または FxTree FxTree のオブジェクト ポインタまたはオブジェクト名

デフォルト値: 現在選択されている値

注: 現在の選択が有効な FxTree でないと、エラーが発生します。

ImageClip String または ImageClip 新しいオペレータに関連付けるイメージ クリップのオブジェクト ポインタまたはオブジェクト名

デフォルト値: 現在選択されている値

注: 現在の選択が有効なイメージ クリップでないと、エラーが発生します。

VBScript の例

' This example creates an FxTree, and sets an image clip as the new operator.

set oTree = CreateFxTree()

' Get the projects path for the current system

sPath = InstallationPath( siProjectPath )

set oClip = CreateImageClip( sPath & "\Pictures\noIcon.pic", "NewClip" )

' Add the new image clip operator and print out some info

set oOperator = AddImageClipFxOp( oTree, oClip )

Application.LogMessage "New operator is called '" _

				& oOperator.Name & "' operator." 

' Output of above script is:

'INFO : "New operator is called 'FromClip_NewClip' operator."