/** Sets the custom number format field value. true if this object has a custom number format */ public void setCustomNumberFormat(boolean value) { field_3_options = customNumberFormat.setShortBoolean(field_3_options, value); }
public void setNoOrientation(boolean orientation) { field_6_options = noOrientation.setShortBoolean(field_6_options, orientation); }
public void setUsePage(boolean page) { field_6_options = usepage.setShortBoolean(field_6_options, page); }
public void setDraft(boolean d) { field_6_options = draft.setShortBoolean(field_6_options, d); }
public void setNotes(boolean printnotes) { field_6_options = notes.setShortBoolean(field_6_options, printnotes); }
public void setValidSettings(boolean valid) { field_6_options = validsettings.setShortBoolean(field_6_options, valid); }
public void setNoColor(boolean mono) { field_6_options = nocolor.setShortBoolean(field_6_options, mono); }
public void setLandscape(boolean ls) { field_6_options = landscape.setShortBoolean(field_6_options, ls); }
// option bitfields public void setLeftToRight(boolean ltor) { field_6_options = lefttoright.setShortBoolean(field_6_options, ltor); }
/** Sets the shadow field value. display a shadow for the chart */ public void setShadow(boolean value) { field_1_formatFlags = shadow.setShortBoolean(field_1_formatFlags, value); }
/** Sets the display as percentage field value. results displayed as percentages */ public void setDisplayAsPercentage(boolean value) { field_1_formatFlags = displayAsPercentage.setShortBoolean(field_1_formatFlags, value); }
/** Sets the stacked field value. series is stacked */ public void setStacked(boolean value) { field_1_formatFlags = stacked.setShortBoolean(field_1_formatFlags, value); }