This document is archived and information here might be outdated.  Recommended version.


INAServerSolverParams.ImageDescription Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > NetworkAnalyst > ESRI.ArcGIS.NetworkAnalyst > Interfaces > IN > INAServerSolverParams Interface > INAServerSolverParams.ImageDescription Property
ArcGIS Developer Help

INAServerSolverParams.ImageDescription Property

ImageDescription used when generating the MapImage returned with the analysis results.

[Visual Basic .NET]
Public Property ImageDescription As IImageDescription
[C#]
public IImageDescription ImageDescription {get; set;}
[C++]
HRESULT get_ImageDescription(
  IImageDescription* ImageDescription
);
[C++]
HRESULT putref_ImageDescription(
  IImageDescription** ImageDescription
);
[C++]
Parameters
ImageDescription [in]

ImageDescription is a parameter of type IImageDescription* ImageDescription [out, retval]
ImageDescription is a parameter of type IImageDescription**

Product Availability

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

Remarks

Specifies the ImageDescription used when creating maps during solve.  Setting the Width and Height of the output map to be 200x200 pixels would look something like:

routeParams.ImageDescription.Display.Width = 200
routeParams.ImageDescription.Display.Height = 200

See Also

INAServerSolverParams Interface