Converts coordinates in page space (in inches) to coordinates in image space (in pixels).
Syntax
Visual Basic (Declaration) | |
---|
Public Overloads Sub FromPagePoint( _
ByVal point As ESRI.ArcGIS.Geometry.IPoint, _
ByRef toX As Integer, _
ByRef toY As Integer _
) |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebPageLayout
Dim point As ESRI.ArcGIS.Geometry.IPoint
Dim toX As Integer
Dim toY As Integer
instance.FromPagePoint(point, toX, toY) |
C# | |
---|
public void FromPagePoint(
ESRI.ArcGIS.Geometry.IPoint point,
out int toX,
out int toY
) |
Parameters
- point
- Point to convert in page space.
- toX
- X coordinate of converted point in image space.
- toY
- Y coordinate of converted point in image space.
Remarks
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also