ビジネス・オブジェクト配列 (複数カーディナリティー) である属性の値を設定します。
構文
void IsetBusinessObjectArrayAttribute(string attributeName, IBusinessObjectArray value);
パラメーター
戻り値
なし。
例外
例
// Call the BusinessObjectArray attribute method String arrayAttribute = "CustomerAddress"; IBusinessObject CustomerAddress = accessSession.IcreateBusinessObjectArray ("Address"); IBusinessObject exampleBO = accessSession.IcreateBusinessObject ("Customer"); exampleBO.IsetBusinessObjectArrayAttribute(arrayAttribute, CustomerAddress);