v1.5
エレメントをフォルダに移動します。 このコマンドを使用し、関連クリップを共通フォルダに移動します。 CreateFolder コマンドを使用すると、フォルダを追加してエレメントを整理できます。
MoveToFolder( Target, [InputObjs] ); |
dim clipFile clipFile = Application.InstallationPath( siFactoryPath ) & "\Data\XSI_SAMPLES\Pictures\bottom_teeth.jpg" const clipName = "MyClip" ' Create an image clip CreateImageClip clipFile, clipName ' Create a folder named MyBMP_Clips CreateFolder "Clips", "MyBMP_Clips" ' Move the clip under the new folder MoveToFolder "Clips.MyBMP_Clips", "Clips." & clipName |