Click or drag to resize

PointExtensionsGeoTransform Method

This extension method adds a GeoTransform API to the Point class. The call is forwarded to the Transform(Point, String, String) method.

Namespace:  System.Windows
Assembly:  Ptv.XServer.Controls.Map (in Ptv.XServer.Controls.Map.dll) Version: 1.7.10.0
Syntax
public static Point GeoTransform(
	this Point p,
	string sourceSrid,
	string destSrid
)

Parameters

p
Type: System.WindowsPoint
The point to transform.
sourceSrid
Type: SystemString
The source reference system.
destSrid
Type: SystemString
The destination reference system.

Return Value

Type: Point
The transformed point.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Point. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also