 "setShapeLineColor"
"setShapeLineColor"
    
    Sets the shape line color.
Synopsis
void
                setShapeLineColor(stringstrLayer,stringstrField,stringstrShape,stringlColor);
Parameters
| Parameter | Description | 
|---|---|
| strLayer | The layer of the shape | 
| strField | The shape field of the layer | 
| strShape | The name of the shape whose line color should be set. | 
| lColor | The line color that should be set. See Color string. | 
Description
Sets the shape line color.
 Example
 Example
Sets the line color of shape "MYRECT" to Orange.
main()
{
  GisViewer_ewo1.setShapeLineColor("SHAPES","NAME", "MYRECT", "{255,102,0}");
}Assignment
GIS Viewer
