Manual switch ICOPT_SUPPORT_ERROR_BAR in XYrange


Version: 2026

Type: Features

Category: Programming

Subcategory: Origin C

Jira: ORG-32169


Example:

#include <GetNbox.h>
void xf_modify_err_bar_support_test(bool bSupport)
{
	GETN_BOX(trRoot)
    GETN_XYRANGE(iy, "Input Data", 1, "")
    
    TreeNode trInput = trRoot.iy;
    xf_modify_err_bar_support(trInput, bSupport);
    
	int nOption;
	trInput.GetAttribute(STR_INTERACTIVE_CONTROL_OPTIONS_ATTRIB, nOption);
	out_int("nOption=", nOption);
}