CollectionItem.Value

説明

オブジェクトのフルネームをStringとして設定したり、戻したりします。Value は CollectionItem オブジェクトのデフォルトプロパティです。

C#構文

// get accessor

String rtn = CollectionItem.Value;

// set accessor

CollectionItem.Value = String;

VBScript の例

set oCollectionItem = CreateObject("XSI.CollectionItem")

oCollectionItem.Value = "Camera"

logmessage "get item as string:" & oCollectionItem.value

logmessage "get item as string (using default property):" & oCollectionItem