FileReference.Owners

説明

このファイルのオーナーを XSICollection として戻します。通常オーナーは一人で、ソース(オーディオファイルやイメージファイルなど)を含むパラメータになります。

C#構文

// get accessor

CXSICollection rtn = FileReference.Owners;

JScript の例

NewScene( null, false );

// First import an image so we have some external files to find

var myImg = XSIUtils.BuildPath( 

	Application.InstallationPath(siProjectPath),

	"Pictures", "back.bmp" 

);

CreateImageClip( myImg, "MyClip" );

// Get the collection of all external files on the scene

var oScene = Application.ActiveProject.ActiveScene;

var l_extFileList = oScene.ExternalFiles;

// Get the first file object in the list

var oFile = l_extFileList(0);

// Get the owners 

var oOwners = oFile.Owners;

for (i=0; i< oOwners.Count; i++) {

	Application.LogMessage ("The owner is: " + oOwners(i));

}

// Expected result:

// INFO : The owner is: Sources.back_bmp.Path

関連項目

FileReference.Path