DataObject.DeleteVarValueOrder

Prototypes

void DeleteVarValueOrder( String sVarName )

Parameters

String sVarName
The name of the variable whose custom ordering you want to delete.

Remarks

This method deletes the custom ordering assigned to a variable. For information about custom ordering, see DataObject.SetVarValueOrder.

Example
declare DataObject dobj;
x = { "Low", "Medium", "Medium", "High", "High", "High" };
dobj = DataObject.Create( "Example", "X", x );
values = { "Low", "Medium", "High" };
dobj.SetVarValueOrder( "X", values );
BarChart.Create( dobj, "X" );
pause "Click the Resume button to continue.";
dobj.DeleteVarValueOrder( "X" );
See Also

DataObject.EnableVarValueOrder
DataObject.GetVarValueOrderFlags
DataObject.IsVarValueOrderEnabled
DataObject.ModifyVarValueOrderFlags
DataObject.SetVarValueOrder