この Entity のすべての重複 (重複の重複を含む) へのリンクを戻します。
このメソッドは、重複の重複を含む、すべての重複を戻します。オブジェクトの直接の重複のみを取得するには、代わりに GetDuplicates メソッドを呼び出します。
VBScript
entity.GetAllDuplicates
Perl
$entity->GetAllDuplicates();
Perl の場合は、Links オブジェクトのコレクションが戻されます。
VBScript
以下の例では、entity1 はオリジナルのオブジェクトです。オブジェクト entity2 と entity3 は、entity1 の重複です。さらに、オブジェクト entity4 は entity3 の重複です。次のステートメントを指定します。
linkObjs = entity1.GetAllDuplicates
linkObjs 変数は、次の 3 つの Link オブジェクトの配列です。
Perl
$linkobjs = $entity1->GetAllDuplicates(); # Find out how many duplicates there # are so the for loop can iterate them $numLinks = $linkobjs->Count(); for ($x = 0; $x < $numLinks ; $x++) { $linkobj = $linkobjs->Item($x); $childentity = $linkobj->GetChildEntity(); }