API Reference
ExcelFormulaDependencyGraph
Workbook-level dependency graph built from formula inspection metadata.
Inheritance
- Object
- ExcelFormulaDependencyGraph
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
Methods
public ExcelFormulaDependencyNode FindNode(String sheetName, String cellReference) #ExcelFormulaDependencyNodeFinds a formula dependency node by worksheet name and cell reference.
Parameters
- sheetName System.String
- cellReference System.String
public String ToMarkdown() #StringReturns a compact Markdown report of formula dependencies and dependents.
Inherited Methods
public override Boolean Equals(Object obj) #BooleanParameters
- obj Object
Properties
public IReadOnlyList<ExcelFormulaDependencyNode> Nodes { get; } #Formula nodes in workbook order.
public Int32 NodeCount { get; } #Total formula nodes in the graph.
public Int32 EdgeCount { get; } #Total direct formula-to-formula dependency edges.
public Int32 MaximumDependencyDepth { get; } #Longest resolvable formula-to-formula dependency chain, counting formula cells.
public IReadOnlyList<ExcelFormulaCircularReference> CircularReferences { get; } #Circular formula-reference groups detected in the workbook.
public Int32 CircularReferenceCount { get; } #Total circular formula-reference groups.
public Boolean HasCircularReferences { get; } #True when one or more circular formula-reference groups were detected.
public Boolean HasDependencyIssues { get; } #True when at least one formula node has dependency diagnostics.