/** 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 testSetShortBoolean() { assertEquals(bf_multi.setShort((short) 0), bf_multi.setShortBoolean((short) 0, true)); assertEquals(bf_single.setShort((short) 0), bf_single.setShortBoolean((short) 0, true)); assertEquals(bf_multi.clearShort((short) -1), bf_multi.setShortBoolean((short) -1, false)); assertEquals(bf_single.clearShort((short) -1), bf_single.setShortBoolean((short) -1, false)); }
/** 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 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 stacked field value. series is stacked */ public void setStacked(boolean value) { field_1_formatFlags = stacked.setShortBoolean(field_1_formatFlags, value); }