Version

Contains Method (RefTuple)

True if this tuple contains the input tuple. The input tuple is considered to be contained if both tuples have the same identifier and if this scope contains the input scope. The input scope is contained if neither scope types are type Unknown and they meet one of the following conditions:
  • Both tuples have SummaryValue scope.
  • Either tuple has scope type Any.
  • Both are type Identifier and have lexographicly equal scope identifiers.
  • Both are the same type of index (Index or RelativeIndex) and have the same scope index.
Syntax
'Declaration
 
Public Function Contains( _
   ByVal tuple As RefTuple _
) As Boolean
public bool Contains( 
   RefTuple tuple
)

Parameters

tuple
The RefTuple to check.

Return Value

True if this tuple contains the input tuple.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also