ArcObjects Library Reference (NetworkAnalyst)  

INAClassDefinitionEdit.IsOutput Property

Indicates if the class is used as an output from analysis.

[Visual Basic .NET]
Public WriteOnly Property IsOutput
[C#]
public void IsOutput {set;}
[C++]
HRESULT put_IsOutput(
  VARIANT_BOOL 
);
[C++]

Parameters

[in]    is a parameter of type VARIANT_BOOL

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Network Analyst Extension.

Remarks

IsOutput specifies if the NAClass is used as output generated during the solve. 

An output NAClass generally has features written to it or fields updated on existing features during solve.  An NAClass may be both an input and output class.  For example, Stops are used as input to specify the locations visited and used as output to specify how long it took to reach each location visited.

This property should only be set by a custom solver during the creation of the NAContext.

See Also

INAClassDefinitionEdit Interface