| 
 
Command
 QisLib_SetStructureOutline 
Function:
	int QisLib_SetStructureOutline(const char* OptionString);
Inputs:
	OptionString: A string with the following format [Backus-Naur form]
	< OptionString > : "All" | "Off" | < Level > { "," < Level > }
	< Level > : A number >= 0
Return:
	success: 0
	failure: one of the following values :
Errors:
	-1: The specified input is invalid (null)
Description:
	- Controls whether the cell references on a particular hierarchy level are drawn with
	an extent outline.
Example:
	QisLib_SetStructureOutline("All");
	QisLib_SetStructureOutline("Off");
	QisLib_SetStructureOutline("1,2");
References:QisLib_SetNestingLevel QisLib_SetStructureLabels  |