====== ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape ====== {{section>upgrade_map_suite_to_10.0}} This abstract class is the root of all area-based shapes, such as RectangleShape and PolygonShape. ===== Inheritance Hierarchy ===== *System.Object *ThinkGeo.MapSuite.SilverlightCore.BaseShape ***ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape** *[[ThinkGeo.MapSuite.SilverlightCore.EllipseShape]] *[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape]] *[[ThinkGeo.MapSuite.SilverlightCore.PolygonShape]] *[[ThinkGeo.MapSuite.SilverlightCore.RectangleShape]] *[[ThinkGeo.MapSuite.SilverlightCore.RingShape]] ===== Members Summary ===== ==== Public Constructors ==== ==== Protected Constructors ==== ** {{wiki:ProtectedMethod.gif|}} AreaBaseShape() ** * //This is the default constructor for AreaBaseShape.// == Remarks == * //This constructor simply calls the base constructor.// == Parameters ==
==== Public Methods ==== ** {{wiki:PublicMethod.gif|}} GetPerimeter(GeographyUnit,DistanceUnit) ** * //This method returns the perimeter of the shape, defined as the sum of the lengths of all its sides.// == Remarks == * //You would use this method to find the distance around the area shape.// == Return Value == * Type:Double * Description:The return unit is based on a LengthUnit you specify in the returningUnit parameter, regardless of the shape's GeographyUnit. == 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 DistanceUnit 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|}} GetArea(GeographyUnit,AreaUnit) ** * //This method returns the area of the shape, defined as the size of the region enclosed by the figure.// == Remarks == * //You would use this method to find the area inside the shape.// == Return Value == * Type:Double * Description:The return unit is based on a AreaUnit you specify in the returningUnit parameter, regardless of the shape's GeographyUnit. == 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.AreaUnit|AreaUnit]] * Description:This is the AreaUnit you would like to use as the return value. For example, if you select square miles as your returningUnit, then the distance will be returned in square miles.
** {{wiki:PublicMethod.gif|}} ScaleUp(Double) ** * //This method increases the size of the area shape 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, since you apply the operation multiple times. There is a ScaleDown method that will shrink the shape. as well.// == 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 area shape 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, since you apply the operation multiple times. There is a ScaleUp method that will enlarge the shape as well.// == Return Value == * Type:Void * Description: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, since you apply the operation multiple times. There is a ScaleUp method that will enlarge the shape as well. == Parameters == * //percentage// * Type:Double * Description:This is the percentage by which to decrease the shape's size.
** {{wiki:PublicMethod.gif|}} GetConvexHull() ** * //This method returns the convex hull of the shape, defined as the smallest convex ring that contains all of 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 the convex hull of the shape, defined as the smallest convex ring that contains all of the points in the shape. == Parameters ==
** {{wiki:PublicMethod.gif|}} GetIntersection(AreaBaseShape) ** * //This method returns the intersection of the current shape and the target shape, defined as the set of all points which lie in both the current shape and the target shape.// == Remarks == * //None// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in both the current shape and the target shape. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the intersection with.
** {{wiki:PublicMethod.gif|}} GetIntersection(Feature) ** * //This method returns the intersection of the current shape and the target feature, defined as the set of all points which lie in both the current shape and the target feature.// == Remarks == * //None// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in both the current shape and the target feature. == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:The feature you are trying to find the intersection with.
** {{wiki:PublicMethod.gif|}} Union(AreaBaseShape) ** * //This method returns the union of the current shape and the target shape, defined as the set of all points in the current shape or the target shape.// == Remarks == * //This is useful for adding area shapes together to form a larger area shape.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in the current shape or the target shape. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the union with.
** {{wiki:PublicMethod.gif|}} Union(Feature) ** * //This method returns the union of the current shape and the target feature, defined as the set of all points in the current shape or the target feature.// == Remarks == * //This is useful for adding area shapes together to form a larger area shape.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in the current shape or the target feature. == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:The feature you are trying to find the union with.
** {{wiki:PublicMethod.gif|}} GetDifference(AreaBaseShape) ** * //This method returns the difference between two shapes, defined as the set of all points which lie in the current shape but not in the targetShape.// == Remarks == * //None// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that is the set of all points which lie in the current shape but not in the targetShape. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the difference with.
** {{wiki:PublicMethod.gif|}} GetDifference(Feature) ** * //This method returns the difference between current shape and the specified feature, defined as the set of all points which lie in the current shape but not in the targetShape.// == Remarks == * //None// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that is the set of all points which lie in the current shape but not in the target feature. == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:The feture you are trying to find the difference with.
** {{wiki:PublicMethod.gif|}} GetSymmetricalDifference(AreaBaseShape) ** * //This method returns the symmetrical difference between two shapes, defined as the set of all points which lie in the current shape or the targetShape but not both.// == Remarks == * //None// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that is the set of all points which lie in the current shape or the targetShape but not both. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the symmetrical difference with.
** {{wiki:PublicMethod.gif|}} GetSymmetricalDifference(Feature) ** * //This method returns the symmetrical difference between current shape and the specified feature, defined as the set of all points which lie in the current shape or the targetFeature but not both.// == Remarks == * //None// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that is the set of all points which lie in the current shape or the targetFeature but not both. == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:The feature you are trying to find the symmetrical difference with.
** {{wiki:PublicMethod.gif|}} Simplify(GeographyUnit,Double,DistanceUnit,SimplificationType) ** * //This method performed a simplification operation based on the parameters passed in. Simplify permanently alters the input geometry so that the geometry becomes topologically consistent.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:This method returns a simplification multipolgyon by the specified parameters. == Parameters == * //shapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:This parameter specifies the geographic unit of this current shape you are performing the operation * //tolerance// * Type:Double * Description:This parameter specifes the tolerance to be used when simplification. * //toleranceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:This parameter specifes the distance unit of the tolerance. * //simplificationType// * Type:[[ThinkGeo.MapSuite.SilverlightCore.SimplificationType|SimplificationType]] * Description:This prameter specifies the type of simplification operation.
** {{wiki:PublicMethod.gif|}} Simplify(Double,SimplificationType) ** * //This method performed a simplification operation based on the parameters passed in. Simplify permanently alters the input geometry so that the geometry becomes topologically consistent.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:This method returns a simplification multipolgyon by the specified parameters. == Parameters == * //tolerance// * Type:Double * Description:This parameter specifes the tolerance to be used when simplification. * //simplificationType// * Type:[[ThinkGeo.MapSuite.SilverlightCore.SimplificationType|SimplificationType]] * Description:This prameter specifies the type of simplification operation.
** {{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(AreaBaseShape,Double) ** * //This method returns a new area shape that has been scaled up 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, since you apply the operation multiple times. There is a ScaleDown method that will shrink the shape as well.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:This parameter is the shape to use as the base for the scaling. * //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 area shape that has been scaled up 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, since you apply the operation multiple times. There is a ScaleDown method that will shrink the shape as well.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:N/A == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:This parameter is the feature to use as the base for the scaling. * //percentage// * Type:Double * Description:This is the percentage by which to increase the shape's size.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} ScaleDown(AreaBaseShape,Double) ** * //This method returns a new area shape that has been scaled down 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, since you apply the operation multiple times. There is a ScaleUp method that will enlarge the shape as well.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description: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, since you apply the operation multiple times. There is a ScaleUp method that will enlarge the shape as well. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:This parameter is the shape to use as the base for the scaling. * //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 area feature that has been scaled down 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, since you apply the operation multiple times. There is a ScaleUp method that will enlarge the shape as well.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description: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, since you apply the operation multiple times. There is a ScaleUp method that will enlarge the shape as well. == Parameters == * //targetFeature// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:This parameter is the shape to use as the base for the scaling. * //percentage// * Type:Double * Description:This is the percentage by which to decrease the shape's size.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Union(IEnumerable) ** * //This method returns the union of the current shape and the target features, defined as the set of all points in the current shape or the target features.// == Remarks == * //This is useful for adding area shapes together to form a larger area shape. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in the current shape or the target features. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above. == Parameters == * //targetFeatures// * Type:IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]]> * Description:The target features you are trying to find the union with.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Union(IEnumerable) ** * //This method returns the union of the specified area shapes.// == Remarks == * //This is useful for adding area shapes together to form a larger area shape.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points that lie within the shapes you specified. == Parameters == * //areaShapes// * Type:IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]]> * Description:The shapes you are trying to find the union with.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Split(AreaBaseShape,AreaBaseShape) ** * //This method returns a collection of MultiPolygonShapes split by the specified parameters.// == Remarks == * //None.// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]]> * Description:This method returns a collection of MultiPolygonShape split by the specified parameters. == Parameters == * //areaToSplit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:This parameter represents the shape to be split. * //areaToSplitBy// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:This parameter represents the shape that will be used to perform the split.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Split(Feature,Feature) ** * //This method returns a collection of Features split by the specified parameters.// == Remarks == * //None.// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]]> * Description:This method returns a collection of Features split by the specified parameters. == Parameters == * //areaToSplit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:This parameter represents the feature to be split. * //areaToSplitBy// * Type:[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]] * Description:This parameter represents the feature that will be used to perform the split.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Simplify(AreaBaseShape,GeographyUnit,Double,DistanceUnit,SimplificationType) ** * //This method performed a simplification operation based on the parameters passed in. Simplify permanently alters the input geometry so that the geometry becomes topologically consistent.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:This method returns a simplification multipolgyon by the specified parameters. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:This parameter specifies the area shape to be simplfied. * //targetShapeUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] * Description:This parameter specifies the geographic unit of the shape you are performing the operation * //tolerance// * Type:Double * Description:This parameter specifes the tolerance to be used when simplification. * //toleranceUnit// * Type:[[ThinkGeo.MapSuite.SilverlightCore.DistanceUnit|DistanceUnit]] * Description:This parameter specifes the distance unit of the tolerance. * //simplificationType// * Type:[[ThinkGeo.MapSuite.SilverlightCore.SimplificationType|SimplificationType]] * Description:This prameter specifies the type of simplification operation.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} Simplify(AreaBaseShape,Double,SimplificationType) ** * //This method performed a simplification operation based on the parameters passed in. Simplify permanently alters the input geometry so that the geometry becomes topologically consistent.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:This method returns a simplification multipolgyon by the specified parameters. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:This parameter specifies the area shape to be simplfied. * //tolerance// * Type:Double * Description:This parameter specifes the tolerance to be used when simplification. * //simplificationType// * Type:[[ThinkGeo.MapSuite.SilverlightCore.SimplificationType|SimplificationType]] * Description:This prameter specifies the type of simplification operation.
==== Protected Methods ==== ** {{wiki:ProtectedMethod.gif|}} GetPerimeterCore(GeographyUnit,DistanceUnit) ** * //This method returns the perimeter of the shape, defined as the sum of the lengths of all its sides.// == Remarks == * //You would use this method to find the distance around the area shape. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:Double * Description:The return unit is based on a LengthUnit you specify in the returningUnit parameter, regardless of the shape's GeographyUnit. == 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 DistanceUnit 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|}} GetAreaCore(GeographyUnit,AreaUnit) ** * //This method returns the area of the shape, defined as the size of the region enclosed by the figure.// == Remarks == * //You would use this method to find the area inside the shape. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:Double * Description:The return unit is based on a AreaUnit you specify in the returningUnit parameter, regardless of the shape's GeographyUnit. == 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.AreaUnit|AreaUnit]] * Description:This is the AreaUnit you would like to use as the return value. For example, if you select square miles as your returningUnit, then the distance will be returned in square miles.
** {{wiki:ProtectedMethod.gif|}} ScaleUpCore(Double) ** * //This method increases the size of the area shape 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, since you apply the operation multiple times. There is 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 area shape 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, since you apply the operation multiple times. There is 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|}} GetConvexHullCore() ** * //This method returns the convex hull of the shape, defined as the smallest convex ring that contains all of 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. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.RingShape|RingShape]] * Description:This method returns the convex hull of the shape, defined as the smallest convex ring that contains all of the points in the shape. == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GetIntersectionCore(AreaBaseShape) ** * //This method returns the intersection of the current shape and the target shape, defined as the set of all points which lie in both the current shape and the target shape.// == Remarks == * //Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in both the current shape and the target shape. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the intersection with.
** {{wiki:ProtectedMethod.gif|}} UnionCore(AreaBaseShape) ** * //This method returns the union of the current shape and the target shapes, defined as the set of all points in the current shape or the target shape.// == Remarks == * //This is useful for adding area shapes together to form a larger area shape. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that contains the set of all points which lie in the current shape or the target shape. Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the union with.
** {{wiki:ProtectedMethod.gif|}} GetDifferenceCore(AreaBaseShape) ** * //This method returns the difference between two shapes, defined as the set of all points which lie in the current shape but not in the targetShape.// == Remarks == * //Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that is the set of all points which lie in the current shape but not in the targetShape. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the difference with.
** {{wiki:ProtectedMethod.gif|}} GetSymmetricalDifferenceCore(AreaBaseShape) ** * //This method returns the symmetrical difference between two shapes, defined as the set of all points which lie in the current shape or the targetShape but not both.// == Remarks == * //Overriding: Please ensure that you validate the parameters being passed in and raise the exceptions defined above.// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:The return type is a MultiPolygonShape that is the set of all points which lie in the current shape or the targetShape but not both. == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.SilverlightCore.AreaBaseShape|AreaBaseShape]] * Description:The shape you are trying to find the symmetrical difference with.
** {{wiki:ProtectedMethod.gif|}} SimplifyCore(Double,SimplificationType) ** * //This method performed a simplification operation based on the parameters passed in. Simplify permanently alters the input geometry so that the geometry becomes topologically consistent.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.SilverlightCore.MultipolygonShape|MultipolygonShape]] * Description:This method returns a simplification multipolgyon by the specified parameters. == Parameters == * //tolerance// * Type:Double * Description:This parameter specifes the tolerance to be used when simplification. * //simplificationType// * Type:[[ThinkGeo.MapSuite.SilverlightCore.SimplificationType|SimplificationType]] * Description:This prameter specifies the type of simplification operation.
** {{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 ==
==== 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 ====