This document is archived and information here might be outdated. Recommended version. |
Set OD cost matrix solver parameters.
//<-- Snippet Start --> // // Set OD cost matrix solver parameters, including settings for... ESRI.ArcGIS.NetworkAnalyst.INAODCostMatrixSolver naODCostMatrixSolver=naSolver as ESRI.ArcGIS.NetworkAnalyst.INAODCostMatrixSolver; // ...default cutoff naODCostMatrixSolver.DefaultCutoff=Nothing; // ...number of destinations to find naODCostMatrixSolver.DefaultTargetDestinationCount=Nothing; // ...output naODCostMatrixSolver.OutputLines=ESRI.ArcGIS.NetworkAnalyst.esriNAOutputLineType.esriNAOutputLineStraight; //<-- Snippet End -->
' <-- Snippet Start --> ' DESCRIPTION: ' Set OD cost matrix solver parameters, including settings for... Dim naODCostMatrixSolver As ESRI.ArcGIS.NetworkAnalyst.INAODCostMatrixSolver=CType(naSolver, ESRI.ArcGIS.NetworkAnalyst.INAODCostMatrixSolver) ' ...default cutoff naODCostMatrixSolver.DefaultCutoff=Nothing ' ...number of destinations to find naODCostMatrixSolver.DefaultTargetDestinationCount=Nothing ' ...output naODCostMatrixSolver.OutputLines=ESRI.ArcGIS.NetworkAnalyst.esriNAOutputLineType.esriNAOutputLineStraight ' <-- Snippet End -->