public static void ShowRectangleOnMap(int inLBottom, int inLLeft, int inLRight, int inLTop, bool inBShowApplication, int inMaxTime)
        {
            LONGRECT r;

            r.lBottom = inLBottom;
            r.lLeft   = inLLeft;
            r.lRight  = inLRight;
            r.lTop    = inLTop;
            int ret = CApplicationAPI.ShowRectangleOnMap(out _mySError, r, inBShowApplication, inMaxTime);

            O("ShowRectangleOnMap returns: " + ret.ToString());
        }