WebAddImageCoordinates Function

Action

When a URL is submitted due to a server side image map request (ISMAP), this function adds the necessary pair of coordinates to the URL. After all query parameters are added, those coordinates are then added to the subsequent Web function call.

Include file

WebAPI.bdh

Syntax

WebAddImageCoordinates(in sCoordinates: string);
Parameter Description
sCoordinates Coordinates that you want to add to the URL.

Example

dcltrans
  transaction TMain
  begin
    WebPageUrl("http://standardhost");
    WebAddImageCoordinates("?172,79");
    WebPageLink("Click here");
  end TMain;