GML::SET_LINE_MODE- Display/Hide Grid Lines
Syntax
CALL "GML::SET_LINE_MODE"
Description
This procedure displays or hides main grid horizontal and vertical separation lines.
Template variable GML_TPL.ROW_N% is used to set the main grid horizontal separation line (row line) to visible or invisible. Valid values for the GML_TPL.ROW_N% variable are:
| 
                                                         0  | 
                                                    
                                                         No change  | 
                                                
| 
                                                         1  | 
                                                    
                                                         Hide horizontal separation line  | 
                                                
| 
                                                         2  | 
                                                    
                                                         Show horizontal separation line  | 
                                                
Template variable GML_TPL.COL_N% is used to set the main grid vertical separation line (column line) to visible or invisible. Valid values for the GML_TPL.COL_N% variable are:
| 
                                                         0  | 
                                                    
                                                         No change  | 
                                                
| 
                                                         1  | 
                                                    
                                                         Hide vertical separation line  | 
                                                
| 
                                                         2  | 
                                                    
                                                         Show vertical separation line  | 
                                                
Example
Display horizontal and vertical separation lines.
GML.SET%=1
GML_TMP.ROW_N%=2
GML_TPL.COL_N%=2
CALL "GML::SET_LINE_MODE"