|
This macro is intended to hide the application footer.
With no mandatory parameter, the macro is available in the following applications:
- Form
- Control
- Graphic
- Grid
In the Grid, in addition to its standard use (without parameters), it is possible to individually define the module where the display of the footer will be inhibited.
Below is the list of unique grid parameters
- grid - Hide only the footer of the grid module
- res or sum - Hide only the summary module footer
- det - Hides the detail module footer
Remembering that the parameters are not mandatory, in the case of the query, if no parameter is informed, the footer display will be inhibited in all modules.
Examples
Eg. no parameter - Default use of the macro, without passing a parameter, inhibits the display of the footer in the Form, Control, Graph and in all modules of the query.
sc_foot_hide();
Below are examples of using the macro with parameter, exclusively for use in the grid
Eg. using the 'grid' parameter - Inhibits the visualization of the footer only in the application module.
sc_foot_hide('grid');
Eg. using the 'sum' parameter - Inhibits the display of the footer only in the module in the application summary.
sc_foot_hide('res'); or sc_foot_hide('sum');
Eg. using the 'det' parameter - Inhibits the visualization of the footer only in the module in the application summary.
sc_foot_hide('det');
Eg. using more than one parameter - Inhibits the visualization of the footer in the grid and application detail modules.
In this case the parameters must be separated by a comma.
sc_foot_hide('grid,det');
|