v3.0
接続されていない新しいイメージ クリップの FxOperator を FxTree オブジェクトに追加します。
oReturn = AddImageClipFxOp( [FxTree], [ImageClip] ); |
パラメータ | タイプ | 説明 |
---|---|---|
FxTree | String または FxTree |
FxTree のオブジェクト ポインタまたはオブジェクト名。 デフォルト値: 現在選択されている値 |
ImageClip | String または ImageClip |
新しいオペレータに関連付けるイメージ クリップのオブジェクト ポインタまたはオブジェクト名。 デフォルト値: 現在選択されている値 |
' 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." |