ImageGear .NET v25.2 - Updated
ImageGear.Art Assembly / ImageGear.ART Namespace / ImGearARTPage Class / ConvertCoordinates Method / ConvertCoordinates(IImGearScrollableView,IImGearPageDisplay,ImGearCoordConvModes,Array) Method
IImGearScrollableView interface of the page view control.
PageDisplay associated with the page view control.
Translation mode, either IMAGE_TO_DEVICE or DEVICE_TO_IMAGE.
Array of ImGearPoint or ImGearDoublePoint elements to convert.




In This Topic
    ConvertCoordinates(IImGearScrollableView,IImGearPageDisplay,ImGearCoordConvModes,Array) Method
    In This Topic
    Translates coordinates between image and device coordinate systems.
    Syntax
    'Declaration
     
    Public Overloads Sub ConvertCoordinates( _
       ByVal pageView As IImGearScrollableView, _
       ByVal pageDisplay As IImGearPageDisplay, _
       ByVal mode As ImGearCoordConvModes, _
       ByVal points As Array _
    ) 
    'Usage
     
    Dim instance As ImGearARTPage
    Dim pageView As IImGearScrollableView
    Dim pageDisplay As IImGearPageDisplay
    Dim mode As ImGearCoordConvModes
    Dim points As Array
     
    instance.ConvertCoordinates(pageView, pageDisplay, mode, points)
    public void ConvertCoordinates( 
       IImGearScrollableView pageView,
       IImGearPageDisplay pageDisplay,
       ImGearCoordConvModes mode,
       Array points
    )
    public: void ConvertCoordinates( 
       IImGearScrollableView* pageView,
       IImGearPageDisplay* pageDisplay,
       ImGearCoordConvModes mode,
       Array* points
    ) 
    public:
    void ConvertCoordinates( 
       IImGearScrollableView^ pageView,
       IImGearPageDisplay^ pageDisplay,
       ImGearCoordConvModes mode,
       Array^ points
    ) 

    Parameters

    pageView
    IImGearScrollableView interface of the page view control.
    pageDisplay
    PageDisplay associated with the page view control.
    mode
    Translation mode, either IMAGE_TO_DEVICE or DEVICE_TO_IMAGE.
    points
    Array of ImGearPoint or ImGearDoublePoint elements to convert.
    Remarks
    The conversion depends on mode parameter and taks into account the annotation page orientation.
    See Also