Version

IsSubset Method (RefTuple)

True if the input tuple is a subset of this tuble. The input tuple is considered to be a subset if both tuples have the same identifier and if this scope entirely 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.
  • This tuple has scope type Any.
  • Both scopes are type Identifier and have lexographicly equal scope identifiers.
  • Both scopes are the same type of index (Index or RelativeIndex) and have the same scope index.
Syntax
'Declaration
 
Public Function IsSubset( _
   ByVal tuple As RefTuple _
) As Boolean
public bool IsSubset( 
   RefTuple tuple
)

Parameters

tuple
The RefTuple to check.

Return Value

True if the input tuple is a subset of this tuble.
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