Single-Element Functions : List of Functions : stm_r_ch_modification_date

stm_r_ch_modification_date
Returns the date in which the version of the chart in the workarea was saved in the databank.
Note:
Function Type
stm_date
For Elements
Syntax
stm_r_ch_modification_date (ch_id, &status)
Arguments
 
Input/Output
Status Codes
Example
To return the date of the last modification for a chart, use the following statements:

stm_id chart_id;
int status;
.
.
chart_id = stm_r_ch ("TOP", &status);
printf ("\n Chart modified on: %s",
stm_r_ch_modification_date (chart_id, &status));
.
.
The date output is the date on which the chart named TOP was last modified.