In This Topic
Returns an array of
IRange object that represents all the precedents of a cell. This can be a multiple selection (a union of Range objects) if there's more than one precedent.
Syntax
'Declaration
Function GetFullPrecedents( _
Optional ByVal As Boolean _
) As IRange()
'Usage
Dim instance As IRange
Dim excludeUnlinkedWorksheet As Boolean
Dim value() As IRange
value = instance.GetFullPrecedents(excludeUnlinkedWorksheet)
IRange[] GetFullPrecedents(
bool
)
Parameters
- excludeUnlinkedWorksheet
true
if the precedents of unlinked worksheet will be excluded; otherwise, false
. The default value is true
.
See Also