📄 textrecord.java
字号:
/** * Get the rgbColor field for the Text record. */ public int getRgbColor() { return field_4_rgbColor; } /** * Set the rgbColor field for the Text record. */ public void setRgbColor(int field_4_rgbColor) { this.field_4_rgbColor = field_4_rgbColor; } /** * Get the x field for the Text record. */ public int getX() { return field_5_x; } /** * Set the x field for the Text record. */ public void setX(int field_5_x) { this.field_5_x = field_5_x; } /** * Get the y field for the Text record. */ public int getY() { return field_6_y; } /** * Set the y field for the Text record. */ public void setY(int field_6_y) { this.field_6_y = field_6_y; } /** * Get the width field for the Text record. */ public int getWidth() { return field_7_width; } /** * Set the width field for the Text record. */ public void setWidth(int field_7_width) { this.field_7_width = field_7_width; } /** * Get the height field for the Text record. */ public int getHeight() { return field_8_height; } /** * Set the height field for the Text record. */ public void setHeight(int field_8_height) { this.field_8_height = field_8_height; } /** * Get the options1 field for the Text record. */ public short getOptions1() { return field_9_options1; } /** * Set the options1 field for the Text record. */ public void setOptions1(short field_9_options1) { this.field_9_options1 = field_9_options1; } /** * Get the index of color value field for the Text record. */ public short getIndexOfColorValue() { return field_10_indexOfColorValue; } /** * Set the index of color value field for the Text record. */ public void setIndexOfColorValue(short field_10_indexOfColorValue) { this.field_10_indexOfColorValue = field_10_indexOfColorValue; } /** * Get the options2 field for the Text record. */ public short getOptions2() { return field_11_options2; } /** * Set the options2 field for the Text record. */ public void setOptions2(short field_11_options2) { this.field_11_options2 = field_11_options2; } /** * Get the text rotation field for the Text record. */ public short getTextRotation() { return field_12_textRotation; } /** * Set the text rotation field for the Text record. */ public void setTextRotation(short field_12_textRotation) { this.field_12_textRotation = field_12_textRotation; } /** * Sets the auto color field value. * true = automaticly selected colour, false = user-selected */ public void setAutoColor(boolean value) { field_9_options1 = autoColor.setShortBoolean(field_9_options1, value); } /** * true = automaticly selected colour, false = user-selected * @return the auto color field value. */ public boolean isAutoColor() { return autoColor.isSet(field_9_options1); } /** * Sets the show key field value. * true = draw legend */ public void setShowKey(boolean value) { field_9_options1 = showKey.setShortBoolean(field_9_options1, value); } /** * true = draw legend * @return the show key field value. */ public boolean isShowKey() { return showKey.isSet(field_9_options1); } /** * Sets the show value field value. * false = text is category label */ public void setShowValue(boolean value) { field_9_options1 = showValue.setShortBoolean(field_9_options1, value); } /** * false = text is category label * @return the show value field value. */ public boolean isShowValue() { return showValue.isSet(field_9_options1); } /** * Sets the vertical field value. * true = text is vertical */ public void setVertical(boolean value) { field_9_options1 = vertical.setShortBoolean(field_9_options1, value); } /** * true = text is vertical * @return the vertical field value. */ public boolean isVertical() { return vertical.isSet(field_9_options1); } /** * Sets the auto generated text field value. * */ public void setAutoGeneratedText(boolean value) { field_9_options1 = autoGeneratedText.setShortBoolean(field_9_options1, value); } /** * * @return the auto generated text field value. */ public boolean isAutoGeneratedText() { return autoGeneratedText.isSet(field_9_options1); } /** * Sets the generated field value. * */ public void setGenerated(boolean value) { field_9_options1 = generated.setShortBoolean(field_9_options1, value); } /** * * @return the generated field value. */ public boolean isGenerated() { return generated.isSet(field_9_options1); } /** * Sets the auto label deleted field value. * */ public void setAutoLabelDeleted(boolean value) { field_9_options1 = autoLabelDeleted.setShortBoolean(field_9_options1, value); } /** * * @return the auto label deleted field value. */ public boolean isAutoLabelDeleted() { return autoLabelDeleted.isSet(field_9_options1); } /** * Sets the auto background field value. * */ public void setAutoBackground(boolean value) { field_9_options1 = autoBackground.setShortBoolean(field_9_options1, value); } /** * * @return the auto background field value. */ public boolean isAutoBackground() { return autoBackground.isSet(field_9_options1); } /** * Sets the rotation field value. * */ public void setRotation(short value) { field_9_options1 = rotation.setShortValue(field_9_options1, value); } /** * * @return the rotation field value. */ public short getRotation() { return rotation.getShortValue(field_9_options1); } /** * Sets the show category label as percentage field value. * */ public void setShowCategoryLabelAsPercentage(boolean value) { field_9_options1 = showCategoryLabelAsPercentage.setShortBoolean(field_9_options1, value); } /** * * @return the show category label as percentage field value. */ public boolean isShowCategoryLabelAsPercentage() { return showCategoryLabelAsPercentage.isSet(field_9_options1); } /** * Sets the show value as percentage field value. * */ public void setShowValueAsPercentage(boolean value) { field_9_options1 = showValueAsPercentage.setShortBoolean(field_9_options1, value); } /** * * @return the show value as percentage field value. */ public boolean isShowValueAsPercentage() { return showValueAsPercentage.isSet(field_9_options1); } /** * Sets the show bubble sizes field value. * */ public void setShowBubbleSizes(boolean value) { field_9_options1 = showBubbleSizes.setShortBoolean(field_9_options1, value); } /** * * @return the show bubble sizes field value. */ public boolean isShowBubbleSizes() { return showBubbleSizes.isSet(field_9_options1); } /** * Sets the show label field value. * */ public void setShowLabel(boolean value) { field_9_options1 = showLabel.setShortBoolean(field_9_options1, value); } /** * * @return the show label field value. */ public boolean isShowLabel() { return showLabel.isSet(field_9_options1); } /** * Sets the data label placement field value. * */ public void setDataLabelPlacement(short value) { field_11_options2 = dataLabelPlacement.setShortValue(field_11_options2, value); } /** * * @return the data label placement field value. */ public short getDataLabelPlacement() { return dataLabelPlacement.getShortValue(field_11_options2); }} // END OF CLASS
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -