====== ThinkGeo.MapSuite.SilverlightCore.LineBaseShape ====== {{section>upgrade_map_suite_to_10.0}} This abstract class is the root of all line-based shapes, such as LineShape and MultilineShape. ===== Inheritance Hierarchy ===== *System.Object *ThinkGeo.MapSuite.SilverlightCore.BaseShape ***ThinkGeo.MapSuite.SilverlightCore.LineBaseShape** *[[ThinkGeo.MapSuite.SilverlightCore.LineShape]] *[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape]] ===== Members Summary ===== ==== Public Constructors ==== ==== Protected Constructors ==== ** {{wiki:ProtectedMethod.gif|}} LineBaseShape() ** * //This is the default constructor for AreaBaseShape.// == Remarks == * //This constructor simply calls the base constructor.// == Parameters ==
==== Public Methods ==== ** {{wiki:PublicMethod.gif|}} GetLength(GeographyUnit,DistanceUnit) ** * //This method returns the length of the line shape.// == Remarks == * //This is a useful method when you want to know the total length of a line-based shape. If the shape is a MultiLineShape, then the length is the sum of all of its lines. As this is a concrete public method that wraps a Core method, we reserve the right to add events and other logic to pre- or post-process data returned by the Core version of the method. In this way, we leave our framework open on our end, but also allow you the developer to extend our logic to suit your needs. If you have questions about this, please contact our support team as we would be happy to work with you on extending our framework.// == Return Value == * Type:Double * Description:This overload returns the length in the unit of your choice, based on the returningUnit parameter specified. == Parameters == * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:This is the GeographyUnit of the shape you are performing the operation on. * //returningUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:This is the distance unit you would like to use as the return value. For example, if you select miles as your returningUnit, then the distance will be returned in miles.
** {{wiki:PublicMethod.gif|}} ScaleUp(Double) ** * //This method increases the size of the LineShape by the percentage given in the percentage parameter.// == Remarks == * //This method is useful when you would like to increase the size of the shape. Note that a larger percentage will scale the shape up faster as you apply the operation multiple times. There is also a ScaleDown method that will shrink the shape as well. As this is a concrete public method that wraps a Core method we reserve the right to add events and other logic to pre or post process data returned by the Core version of the method. In this way we leave our framework open on our end but also allow you the developer to extend our logic to your needs. If you have questions about this please contact support as we would be happy to work with you on extending our framework.// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Double * Description:This is the percentage by which to increase the shape’s size.
** {{wiki:PublicMethod.gif|}} ScaleDown(Double) ** * //This method decreases the size of the LineShape by the percentage given in the percentage parameter.// == Remarks == * //This method is useful when you would like to decrease the size of the shape. Note that a larger percentage will scale the shape down faster as you apply the operation multiple times. There is also a ScaleUp method that will enlarge the shape as well. As this is a concrete public method that wraps a Core method we reserve the right to add events and other logic to pre or post process data returned by the Core version of the method. In this way we leave our framework open on our end but also allow you the developer to extend our logic to your needs. If you have questions about this please contact support as we would be happy to work with you on extending our framework.// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Double * Description:This is the percentage by which to decrease the shape’s size.
** {{wiki:PublicMethod.gif|}} ConvexHull() ** * //This method returns the convex hull of the shape defined as the smallest convex ring that contains all the points in the shape.// == Remarks == * //This method is useful when you want to create a perimeter around the shape. For example if you had a MultiPolygon which represented buildings in a campus you could easily get the convex hull of the buildings and determine the perimeter of all of the buildings together. This also works with MultiPoint shapes where each point may represent a certain type of person you are doing statistics on. With convex hull you can get an idea of the regions those points are located in. As this is a concrete public method that wraps a Core method we reserve the right to add events and other logic to pre or post process data returned by the Core version of the method. In this way we leave our framework open on our end but also allow you the developer to extend our logic to your needs. If you have questions about this please contact support as we would be happy to work with you on extending our framework.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.RingShape|RingShape]] * Description:This method returns a RingShape defined as the smallest convex ring that contains all the points in the shape. == Parameters ==
** {{wiki:PublicMethod.gif|}} Simplify(GeographyUnit,Double,DistanceUnit,SimplificationType) ** * //Simplify the LineBaseShape to MultilineShape depends on distance tolerance and different SimplificationType.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:Simplify the LineBaseShape to MultilineShape depends on distance tolerance and different SimplificationType. == Parameters == * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:the geography unit of the target shape * //tolerance// * Type:Double * Description:distance tolerance * //toleranceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:the distance unit of tolerance * //simplificationType// * Type:[[ThinkGeo.MapSuite.SilverlightCore.SimplificationType|SimplificationType]] * Description:Specifies which algorthm will be use to simplify.
** {{wiki:PublicMethod.gif|}} Simplify(Double,SimplificationType) ** * //Simplify the LineBaseShape to MultilineShape depends on distance tolerance and different SimplificationType.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:Simplify the LineBaseShape to MultilineShape depends on distance tolerance and different SimplificationType. == Parameters == * //tolerance// * Type:Double * Description:distance tolerance * //simplificationType// * Type:[[ThinkGeo.MapSuite.SilverlightCore.SimplificationType|SimplificationType]] * Description:Specifies which algorthm will be use to simplify.
** {{wiki:PublicMethod.gif|}} Union(LineBaseShape) ** * //Calculates a new geometry that contains all the points in this LineBaseShape and input LineBaseShape// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:A set combining the points of this LineBaseShape and the points of input LineBaseShape. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.LineBaseShape|LineBaseShape]] * Description:The target LineBasheShape with which to compute the union
** {{wiki:PublicMethod.gif|}} Union(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetIntersection(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetIntersection(AreaBaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} LoadFromWellKnownData(String) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //wellKnownText// * Type:String * Description:N/A
** {{wiki:PublicMethod.gif|}} GetWellKnownText() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} LoadFromWellKnownData(Byte[]) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //wellKnownBinary// * Type:Byte[] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetWellKnownBinary() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Byte[] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetWellKnownBinary(WkbByteOrder) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Byte[] * Description:N/A == Parameters == * //byteOrder// * Type:[[ThinkGeo.MapSuite.SilverlightCore.WkbByteOrder|WkbByteOrder]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetBoundingBox() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetWellKnownType() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.WellKnownType|WellKnownType]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CloneDeep() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} TranslateByOffset(Double,Double,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //xOffsetDistance// * Type:Double * Description:N/A * //yOffsetDistance// * Type:Double * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} TranslateByOffset(Double,Double) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //xOffsetDistance// * Type:Double * Description:N/A * //yOffsetDistance// * Type:Double * Description:N/A
** {{wiki:PublicMethod.gif|}} TranslateByDegree(Double,Double,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //angleInDegrees// * Type:Double * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} TranslateByDegree(Double,Double) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //angleInDegrees// * Type:Double * Description:N/A
** {{wiki:PublicMethod.gif|}} Rotate(PointShape,Single) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //pivotPoint// * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] * Description:N/A * //degreeAngle// * Type:Single * Description:N/A
** {{wiki:PublicMethod.gif|}} GetShortestLineTo(BaseShape,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetShortestLineTo(Feature,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetClosestPointTo(BaseShape,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetClosestPointTo(Feature,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetCenterPoint() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Buffer(Double,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Buffer(Double,Int32,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //quadrantSegments// * Type:Int32 * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Buffer(Double,Int32,BufferCapType,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //quadrantSegments// * Type:Int32 * Description:N/A * //bufferCapType// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BufferCapType|BufferCapType]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetDistanceTo(BaseShape,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetDistanceTo(Feature,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Register(PointShape,PointShape,DistanceUnit,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A == Parameters == * //fromPoint// * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] * Description:N/A * //toPoint// * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] * Description:N/A * //fromUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A * //toUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Register(Feature,Feature,DistanceUnit,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A == Parameters == * //fromPoint// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A * //toPoint// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A * //fromUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A * //toUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Validate(ShapeValidationMode) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.ShapeValidationResult|ShapeValidationResult]] * Description:N/A == Parameters == * //validationMode// * Type:[[ThinkGeo.MapSuite.SilverlightCore.ShapeValidationMode|ShapeValidationMode]] * Description:N/A
** {{wiki:PublicMethod.gif|}} IsDisjointed(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} IsDisjointed(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Intersects(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Intersects(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Touches(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Touches(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Crosses(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Crosses(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} IsWithin(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} IsWithin(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Contains(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Contains(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Overlaps(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Overlaps(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} IsTopologicallyEqual(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} IsTopologicallyEqual(Feature) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetFeature() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetFeature(IDictionary) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A == Parameters == * //columnValues// * Type:IDictionary * Description:N/A
** {{wiki:PublicMethod.gif|}} GetCrossing(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipointShape|MultipointShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} ScaleTo(Double) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //scale// * Type:Double * Description:N/A
** {{wiki:PublicMethod.gif|}} ToString() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Equals(Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //obj// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} GetHashCode() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetType() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Type * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} ScaleUp(LineBaseShape,Double) ** * //This method returns a new shape that is increased by the percentage given in the percentage parameter.// == Remarks == * //This method is useful when you would like to increase the size of the shape. Note that a larger percentage will scale the shape up faster as you apply the operation multiple times. There is also a ScaleDown method that will shrink the shape as well. As this is a concrete public method that wraps a Core method we reserve the right to add events and other logic to pre or post process data returned by the Core version of the method. In this way we leave our framework open on our end but also allow you the developer to extend our logic to your needs. If you have questions about this please contact support as we would be happy to work with you on extending our framework.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.LineBaseShape|LineBaseShape]] * Description:a scaled line type shape. == Parameters == * //sourceShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.LineBaseShape|LineBaseShape]] * Description:This parameter is the basis for the scale up up but is not modified. * //percentage// * Type:Double * Description:This is the percentage by which to increase the shape’s size.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} ScaleUp(Feature,Double) ** * //This method returns a new feature that is increased by the percentage given in the percentage parameter.// == Remarks == * //This method is useful when you would like to increase the size of the feature. Note that a larger percentage will scale the shape up faster as you apply the operation multiple times. There is also a ScaleDown method that will shrink the shape as well. As this is a concrete public method that wraps a Core method we reserve the right to add events and other logic to pre or post process data returned by the Core version of the method. In this way we leave our framework open on our end but also allow you the developer to extend our logic to your needs. If you have questions about this please contact support as we would be happy to work with you on extending our framework.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:a scaled line type feature. == Parameters == * //sourceLine// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:This parameter is the basis for the scale up up but is not modified. * //percentage// * Type:Double * Description:This is the percentage by which to increase the shape’s size.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} ScaleDown(LineBaseShape,Double) ** * //This method returns a new shape that is decreases by the percentage given in the percentage parameter.// == Remarks == * //This method is useful when you would like to decrease the size of the shape. Note that a larger percentage will scale the shape down faster as you apply the operation multiple times. There is also a ScaleUp method that will enlarge the shape as well. As this is a concrete public method that wraps a Core method we reserve the right to add events and other logic to pre or post process data returned by the Core version of the method. In this way we leave our framework open on our end but also allow you the developer to extend our logic to your needs. If you have questions about this please contact support as we would be happy to work with you on extending our framework.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.LineBaseShape|LineBaseShape]] * Description:a scaled down line type shape. == Parameters == * //sourceLineBaseShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.LineBaseShape|LineBaseShape]] * Description:This parameter is the basis for the scale up up but is not modified. * //percentage// * Type:Double * Description:This is the percentage by which to decrease the shape’s size.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} ScaleDown(Feature,Double) ** * //This method returns a new feature that is decreases by the percentage given in the percentage parameter.// == Remarks == * //This method is useful when you would like to decrease the size of the feature. Note that a larger percentage will scale the shape down faster as you apply the operation multiple times. There is also a ScaleUp method that will enlarge the shape as well. As this is a concrete public method that wraps a Core method we reserve the right to add events and other logic to pre or post process data returned by the Core version of the method. In this way we leave our framework open on our end but also allow you the developer to extend our logic to your needs. If you have questions about this please contact support as we would be happy to work with you on extending our framework.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:a scaled down line type feature. == Parameters == * //sourceLine// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:This parameter is the basis for the scale up up but is not modified. * //percentage// * Type:Double * Description:This is the percentage by which to decrease the shape’s size.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Simplify(LineBaseShape,GeographyUnit,Double,DistanceUnit,SimplificationType) ** * //Simplify the LineBaseShape to MultilineShape depends on distance tolerance and different SimplificationType.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:Simplify the LineBaseShape to MultilineShape depends on distance tolerance and different SimplificationType. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.LineBaseShape|LineBaseShape]] * Description:target shape which will be simplified. * //targetShapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:the geography unit of the target shape * //tolerance// * Type:Double * Description:distance tolerance * //toleranceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:the distance unit of tolerance * //simplificationType// * Type:[[ThinkGeo.MapSuite.SilverlightCore.SimplificationType|SimplificationType]] * Description:Specifies which algorthm will be use to simplify.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Simplify(LineBaseShape,Double,SimplificationType) ** * //Simplify the LineBaseShape to MultilineShape depends on distance tolerance and different SimplificationType.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:Simplify the LineBaseShape to MultilineShape depends on distance tolerance and different SimplificationType. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.LineBaseShape|LineBaseShape]] * Description:target shape which will be simplified. * //tolerance// * Type:Double * Description:distance tolerance * //simplificationType// * Type:[[ThinkGeo.MapSuite.SilverlightCore.SimplificationType|SimplificationType]] * Description:Specifies which algorthm will be use to simplify.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Union(IEnumerable) ** * //Calculates a new geometry that contains all the points in this LineBaseShape and input LineBaseShape set.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:A set combining the points of this LineBaseShape and the points of input LineBaseShape set. == Parameters == * //lineBaseShapes// * Type:IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.LineBaseShape|LineBaseShape]]> * Description:N/A
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Union(IEnumerable) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:N/A == Parameters == * //targetFeatures// * Type:IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]]> * Description:N/A
==== Protected Methods ==== ** {{wiki:ProtectedMethod.gif|}} GetLengthCore(GeographyUnit,DistanceUnit) ** * //This method returns the length of the line shape.// == Remarks == * //This is a useful method when you want to know the total length of a line-based shape. If the shape is a MultiLineShape, then the length is the sum of all of its lines. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:Double * Description:This overload returns the length in the unit of your choice, based on the returningUnit parameter specified. == Parameters == * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:This is the GeographyUnit of the shape you are performing the operation on. * //returningUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:This is the distance unit you would like to use as the return value. For example, if you select miles as your returningUnit, then the distance will be returned in miles.
** {{wiki:ProtectedMethod.gif|}} ScaleUpCore(Double) ** * //This method increases the size of the LineShape by the percentage given in the percentage parameter.// == Remarks == * //This method is useful when you would like to increase the size of the shape. Note that a larger percentage will scale the shape up faster as you apply the operation multiple times. There is also a ScaleDown method that will shrink the shape as well. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Double * Description:This is the percentage by which to increase the shape’s size.
** {{wiki:ProtectedMethod.gif|}} ScaleDownCore(Double) ** * //This method decreases the size of the LineShape by the percentage given in the percentage parameter.// == Remarks == * //This method is useful when you would like to decrease the size of the shape. Note that a larger percentage will scale the shape down faster as you apply the operation multiple times. There is also a ScaleUp method that will enlarge the shape as well. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Double * Description:This is the percentage by which to decrease the shape’s size.
** {{wiki:ProtectedMethod.gif|}} ConvexHullCore() ** * //This method returns the convex hull of the shape defined as the smallest convex ring that contains all the points in the shape.// == Remarks == * //This method is useful when you want to create a perimeter around the shape. For example, if you had a MultiPolygon that represented buildings on a campus, you could easily get the convex hull of the buildings and determine the perimeter of all of the buildings together. This also works with MultiPoint shapes, where each point may represent a certain type of person you are doing statistics on. With convex hull, you can get an idea of the regions those points are located in.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.RingShape|RingShape]] * Description:This method returns a RingShape defined as the smallest convex ring that contains all the points in the shape. == Parameters ==
** {{wiki:ProtectedMethod.gif|}} SimplifyCore(Double,SimplificationType) ** * //Simplify the LineBaseShape to MultilineShape depends on distance tolerance and different SimplificationType.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:Simplify the LineBaseShape to MultilineShape depends on distance tolerance and different SimplificationType. == Parameters == * //tolerance// * Type:Double * Description:distance tolerance * //simplificationType// * Type:[[ThinkGeo.MapSuite.SilverlightCore.SimplificationType|SimplificationType]] * Description:Specifies which algorthm will be use to simplify.
** {{wiki:ProtectedMethod.gif|}} UnionCore(IEnumerable) ** * //The protected virtual method used by "Union" that you can overwrite to implement your own logic.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:A set combining the points of this LineBaseShape and the points of input LineBaseShape set. == Parameters == * //lineBaseShapes// * Type:IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.LineBaseShape|LineBaseShape]]> * Description:The target LineBasheShape set with which to compute the union
** {{wiki:ProtectedMethod.gif|}} GetIntersectionCore(AreaBaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} LoadFromWellKnownDataCore(String) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //wellKnownText// * Type:String * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetWellKnownTextCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} LoadFromWellKnownDataCore(Byte[]) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //wellKnownBinary// * Type:Byte[] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetWellKnownBinaryCore(WkbByteOrder) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Byte[] * Description:N/A == Parameters == * //byteOrder// * Type:[[ThinkGeo.MapSuite.SilverlightCore.WkbByteOrder|WkbByteOrder]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetBoundingBoxCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]] * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GetWellKnownTypeCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.WellKnownType|WellKnownType]] * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} CloneDeepCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} TranslateByOffsetCore(Double,Double,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //xOffsetDistance// * Type:Double * Description:N/A * //yOffsetDistance// * Type:Double * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} TranslateByDegreeCore(Double,Double,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //angleInDegrees// * Type:Double * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RotateCore(PointShape,Single) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //pivotPoint// * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] * Description:N/A * //degreeAngle// * Type:Single * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetShortestLineToCore(BaseShape,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultilineShape|MultilineShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetClosestPointToCore(BaseShape,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetCenterPointCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} BufferCore(Double,Int32,BufferCapType,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:N/A == Parameters == * //distance// * Type:Double * Description:N/A * //quadrantSegments// * Type:Int32 * Description:N/A * //bufferCapType// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BufferCapType|BufferCapType]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetDistanceToCore(BaseShape,GeographyUnit,DistanceUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A * //distanceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RegisterCore(PointShape,PointShape,DistanceUnit,GeographyUnit) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A == Parameters == * //fromPoint// * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] * Description:N/A * //toPoint// * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] * Description:N/A * //fromUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:N/A * //toUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ValidateCore(ShapeValidationMode) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.ShapeValidationResult|ShapeValidationResult]] * Description:N/A == Parameters == * //validationMode// * Type:[[ThinkGeo.MapSuite.SilverlightCore.ShapeValidationMode|ShapeValidationMode]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} IsDisjointedCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} IntersectsCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} TouchesCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CrossesCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} IsWithinCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ContainsCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OverlapsCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} IsTopologicallyEqualCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetCrossingCore(BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipointShape|MultipointShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ScaleToCore(Double) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //scale// * Type:Double * Description:N/A
** {{wiki:ProtectedMethod.gif|}} Finalize() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}}{{wiki:Static.gif|}} kxo=(Vertex,Vertex,PointShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //vertex1// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Vertex|Vertex]] * Description:N/A * //vertex2// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Vertex|Vertex]] * Description:N/A * //point// * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] * Description:N/A
==== Public Properties ==== ** {{wiki:PublicProperty.gif|}} Id ** N/A == Remarks == N/A == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} Tag ** N/A == Remarks == N/A == Return Value == * Type:Object ** {{wiki:PublicProperty.gif|}} CanRotate ** N/A == Remarks == N/A == Return Value == * Type:Boolean ==== Protected Properties ==== ==== Public Events ====