PreviousNextIndex

FRAME-COL function

Returns a DECIMAL value that is the column position of the left corner of a frame within its window.

Note: Does not apply to SpeedScript programming.
Syntax

FRAME-COL [ ( frame ) ] 

frame
Example

This procedure displays Customer information in one frame, then displays Order information in an overlay frame. FRAME-ROW places the overlay frame on the ninth row of the second column. FRAME-COL places the overlay frame on the first column of the first frame.

r-frcol.p
FOR EACH Customer NO-LOCK: 
  DISPLAY Customer WITH FRAME cust-frame 2 COLUMNS 
    TITLE "CUSTOMER INFORMATION". 
  FOR EACH Order OF Customer NO-LOCK: 
    DISPLAY Order.OrderNum Order.OrderDate Order.ShipDate Order.PromiseDate 
      Order.Carrier Order.Instructions Order.PO 
      WITH 2 COLUMNS 1 DOWN OVERLAY TITLE "CUSTOMER’S ORDERS" 
        ROW FRAME-ROW(cust-frame) + 8 COLUMN FRAME-COL(cust-frame) + 1. 
  END. 
END. 

Notes
See also

Frame phrase, FRAME-DOWN function, FRAME-LINE function, FRAME-ROW function, INTEGER function


OpenEdge Release 10.2B
Copyright © 2009 Progress Software Corporation
PreviousNextIndex