| Package | com.esri.aws.awx.map.layers.overlays.style |
| Class | public class BaseOutlineFillStyle |
| Inheritance | BaseOutlineFillStyle BaseMarkerStyle BaseStyle |
| Implements | IStyle |
| Subclasses | CircleMarkerStyle, SquareMarkerStyle, StarMarkerStyle, TriangleMarkerStyle |
Note: Although styles have public properties (such as color, fill, alpha) they should not be edited after construction.
| Property | Defined by | ||
|---|---|---|---|
| borderAlpha : Number = 1.0
The alpha of the border line.
| BaseOutlineFillStyle | ||
| borderColor : uint = 0xff0000
The color of the border line.
| BaseOutlineFillStyle | ||
| borderThickness : Number = 0
The pixel thickness of the border line.
| BaseOutlineFillStyle | ||
| fillAlpha : Number = 1.0
The alpha of the fill.
| BaseOutlineFillStyle | ||
| fillColor : uint = 0xff0000
The color of the fill.
| BaseOutlineFillStyle | ||
| Method | Defined by | ||
|---|---|---|---|
|
BaseOutlineFillStyle(borderThickness:Number = 0, borderColor:uint = 0xff0000, borderAlpha:Number = 1.0, fillColor:uint = 0xff0000, fillAlpha:Number = 1.0)
Creates a new BaseOutlineFillStyle.
| BaseOutlineFillStyle | ||
![]() |
cleanUp(overlayObject:OverlayObject):void
Cleans up the OverlayObject to restore it to its original state.
| BaseStyle | |
![]() |
Creates the default ToolTip (lat/lon) if overlayObject.toolTip is null.
| BaseMarkerStyle | |
| borderAlpha | property |
public var borderAlpha:Number = 1.0The alpha of the border line.
| borderColor | property |
public var borderColor:uint = 0xff0000The color of the border line.
| borderThickness | property |
public var borderThickness:Number = 0The pixel thickness of the border line.
| fillAlpha | property |
public var fillAlpha:Number = 1.0The alpha of the fill.
| fillColor | property |
public var fillColor:uint = 0xff0000The color of the fill.
| BaseOutlineFillStyle | () | constructor |
public function BaseOutlineFillStyle(borderThickness:Number = 0, borderColor:uint = 0xff0000, borderAlpha:Number = 1.0, fillColor:uint = 0xff0000, fillAlpha:Number = 1.0)Creates a new BaseOutlineFillStyle.
ParametersborderThickness:Number (default = 0) — The pixel thickness of the border line.
|
|
borderColor:uint (default = 0xff0000) — The color of the border line.
|
|
borderAlpha:Number (default = 1.0) — The alpha of the border line.
|
|
fillColor:uint (default = 0xff0000) — The color of the fill.
|
|
fillAlpha:Number (default = 1.0) — The alpha of the fill.
|