snp_setup
status.i4.v = snp_setup(plot_info.s.r [,top_row.i4.v]
[,left_column.i4.v])
This routine allows a user to edit a snapshot plot setup.
plot_info plot information structure (type is SNP_INFO)
[top_row] top row of snapshot window (default is WMNGR_CENTER)
[left_column] left column of snapshot window (default is WMNGR_CENTER)
This function returns status values as follows:
CBS_WINDOW_TOO_BIG plot window won't fit on screen
TRUE plot setup was changed
FALSE plot setup was not changed
This function requires the following include files:
cnsparam_h, cns_data_structs_h, cbslib_h, acnet_errors_h
Related functions:
snpplt, snp_start, snp_file_menu_c, snp_start_plot_c,
snp_start_plot_from_file_c, snp_read_plot_setup_file_c,
snp_set_sda_info_c, snp_export_data, fstplt, ftp_setup, ftp_start,
ftp_file_menu_c, ftp_start_plot_c, ftp_start_plot_from_file_c,
ftp_read_plot_setup_file_c, ftp_calculated_trace_c
C/C++ usage:
int status;
int top_row = WMNGR_CENTER;
int left_column = WMNGR_CENTER;
SNP_INFO plot_info;
status = snp_setup(&plot_info,top_row,left_column);