/// <summary>
 /// Visits all document references.
 /// </summary>
 /// <param name="ReportProxies">The report proxies.</param>
 public void VisitDocumentReferences(Main.DocNodeProxyReporter ReportProxies)
 {
     if (_inputData != null)
     {
         _inputData.VisitDocumentReferences(ReportProxies);
     }
 }
Beispiel #2
0
 /// <summary>
 /// Replaces path of items (intended for data items like tables and columns) by other paths. Thus it is possible
 /// to change a plot so that the plot items refer to another table.
 /// </summary>
 /// <param name="Report">Function that reports the found <see cref="DocNodeProxy"/> instances to the visitor.</param>
 public void VisitDocumentReferences(DocNodeProxyReporter Report)
 {
     _matrixProxy.VisitDocumentReferences(Report);
 }