Package | com.esri.bacore |
Class | public final class RenderingParameters |
This class is only used in the Business Analyst Server API for Flex.
The imageDescription
and mapDescription
properties are optional
parameters. If the mapDescription
is missing, the default map will be used.
If the imageDescription
is missing, default values are used for rendering the image.
Property | Defined by | ||
---|---|---|---|
imageDescription : ImageDescription
Settings of the image to be generated.
| RenderingParameters | ||
mapDescription : String
Settings of a map of the current document which will be used for rendering a layer to image.
| RenderingParameters | ||
zoomToLayer : Boolean
Either zoom the map to layer before rendering to image or not.
| RenderingParameters |
Method | Defined by | ||
---|---|---|---|
RenderingParameters(imageDescription:ImageDescription = null, mapDescription:String = null)
Creates a new instance of the RenderingParameters class.
| RenderingParameters |
imageDescription | property |
imageDescription:ImageDescription
[read-write]Settings of the image to be generated.
Implementation public function get imageDescription():ImageDescription
public function set imageDescription(value:ImageDescription):void
mapDescription | property |
mapDescription:String
[read-write]Settings of a map of the current document which will be used for rendering a layer to image.
Implementation public function get mapDescription():String
public function set mapDescription(value:String):void
zoomToLayer | property |
zoomToLayer:Boolean
[read-write]Either zoom the map to layer before rendering to image or not. If true, the map will be zoomed to layer before rendering and the whole layer will be rendered to image. Otherwise, the whole map will be drown with the layer on it. It is recommended to set this option to true value.
The default value is true
.
public function get zoomToLayer():Boolean
public function set zoomToLayer(value:Boolean):void
RenderingParameters | () | constructor |
public function RenderingParameters(imageDescription:ImageDescription = null, mapDescription:String = null)
Creates a new instance of the RenderingParameters class.
ParametersimageDescription:ImageDescription (default = null ) — Image description.
|
|
mapDescription:String (default = null ) — Map description XML string.
|