Version

IsSubsetReference Method (IExcelCalcReference)

Returns true if inReference is a proper subset of this reference
Syntax
'Declaration
 
Function IsSubsetReference( _
   ByVal inReference As IExcelCalcReference _
) As Boolean
bool IsSubsetReference( 
   IExcelCalcReference inReference
)

Parameters

inReference
The subset candidate.

Return Value

true if inReference is contained by this reference.
Remarks
This method is used by the calculation engine to determine if the passed in reference is fully contained by this reference. Each element in this reference is compared with the corresponding element in the input reference. If the identifiers are the same, and if this scope entirely contains the input scope, then the input reference is a proper subset this reference.
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