/** 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);
 }
Exemple #2
0
 public void setNoOrientation(boolean orientation) {
   field_6_options = noOrientation.setShortBoolean(field_6_options, orientation);
 }
Exemple #3
0
 public void setUsePage(boolean page) {
   field_6_options = usepage.setShortBoolean(field_6_options, page);
 }
Exemple #4
0
 public void setDraft(boolean d) {
   field_6_options = draft.setShortBoolean(field_6_options, d);
 }
Exemple #5
0
 public void setNotes(boolean printnotes) {
   field_6_options = notes.setShortBoolean(field_6_options, printnotes);
 }
Exemple #6
0
 public void setValidSettings(boolean valid) {
   field_6_options = validsettings.setShortBoolean(field_6_options, valid);
 }
Exemple #7
0
 public void setNoColor(boolean mono) {
   field_6_options = nocolor.setShortBoolean(field_6_options, mono);
 }
Exemple #8
0
 public void setLandscape(boolean ls) {
   field_6_options = landscape.setShortBoolean(field_6_options, ls);
 }
Exemple #9
0
 // option bitfields
 public void setLeftToRight(boolean ltor) {
   field_6_options = lefttoright.setShortBoolean(field_6_options, ltor);
 }
Exemple #10
0
 /** 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);
 }
Exemple #11
0
 /** 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);
 }
Exemple #12
0
 /** Sets the stacked field value. series is stacked */
 public void setStacked(boolean value) {
   field_1_formatFlags = stacked.setShortBoolean(field_1_formatFlags, value);
 }