PointExtensionsGeoTransform 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
)
<ExtensionAttribute>
Public Shared Function GeoTransform (
p As Point,
sourceSrid As String,
destSrid As String
) As Point
public:
[ExtensionAttribute]
static Point GeoTransform(
Point p,
String^ sourceSrid,
String^ destSrid
)
[<ExtensionAttribute>]
static member GeoTransform :
p : Point *
sourceSrid : string *
destSrid : string -> Point
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:
PointThe 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