| Package | com.esri.ags.tasks.supportClasses |
| Class | public class TrimExtendParameters |
| Inheritance | TrimExtendParameters Object |
| Since : | ArcGIS API for Flex 2.0 |
See also
| Property | Defined By | ||
|---|---|---|---|
| extendHow : Number = 0
A flag which is used along with the trimExtend operation. | TrimExtendParameters | ||
| polylines : Array
Array of polylines to be trim/extended. | TrimExtendParameters | ||
| trimExtendPolyline : Polyline
A polyline which is used as a guide for trimming/extending input polylines. | TrimExtendParameters | ||
| Constant | Defined By | ||
|---|---|---|---|
| DEFAULT_CURVE_EXTENSION : Number = 0 [static]
Extension considers both ends of paths. | TrimExtendParameters | ||
| KEEP_END_ATTRIBUTES : Number = 2 [static]
If an extension is performed at an end, do not extrapolate the end-segment's attributes for the new point. | TrimExtendParameters | ||
| NO_END_ATTRIBUTES : Number = 4 [static]
If an extension is performed at an end, do not extrapolate the end-segment's attributes for the new point. | TrimExtendParameters | ||
| NO_EXTEND_AT_FROM : Number = 8 [static]
Do not extend the 'from' end of any path. | TrimExtendParameters | ||
| NO_EXTEND_AT_TO : Number = 16 [static]
Do not extend the 'to' end of any path. | TrimExtendParameters | ||
| RELOCATE_ENDS : Number = 1 [static]
If an extension is performed at an end, relocate the end point to the new position instead of leaving the old point and adding a new point at the new position. | TrimExtendParameters | ||
| extendHow | property |
public var extendHow:Number = 0A flag which is used along with the trimExtend operation.
The default value is DEFAULT_CURVE_EXTENSION.
| polylines | property |
public var polylines:ArrayArray of polylines to be trim/extended.
See also
| trimExtendPolyline | property |
public var trimExtendPolyline:PolylineA polyline which is used as a guide for trimming/extending input polylines.
See also
| DEFAULT_CURVE_EXTENSION | Constant |
public static const DEFAULT_CURVE_EXTENSION:Number = 0Extension considers both ends of paths. The old ends remain and new points are added to the extended ends. The new points have attributes that are extrapolated from adjacent existing segments.
| KEEP_END_ATTRIBUTES | Constant |
public static const KEEP_END_ATTRIBUTES:Number = 2If an extension is performed at an end, do not extrapolate the end-segment's attributes for the new point. Instead, make its attributes the same as the current end. Incompatible with esriNoAttributes.
| NO_END_ATTRIBUTES | Constant |
public static const NO_END_ATTRIBUTES:Number = 4If an extension is performed at an end, do not extrapolate the end-segment's attributes for the new point. Instead, make its attributes be empty. Incompatible with esriKeepAttributes.
| NO_EXTEND_AT_FROM | Constant |
public static const NO_EXTEND_AT_FROM:Number = 8Do not extend the 'from' end of any path.
| NO_EXTEND_AT_TO | Constant |
public static const NO_EXTEND_AT_TO:Number = 16Do not extend the 'to' end of any path.
| RELOCATE_ENDS | Constant |
public static const RELOCATE_ENDS:Number = 1If an extension is performed at an end, relocate the end point to the new position instead of leaving the old point and adding a new point at the new position.