📄 textobjectbaserecord.java
字号:
/** * Get the text orientation field for the TextObjectBase record. * * @return One of * TEXT_ORIENTATION_NONE * TEXT_ORIENTATION_TOP_TO_BOTTOM * TEXT_ORIENTATION_ROT_RIGHT * TEXT_ORIENTATION_ROT_LEFT */ public short getTextOrientation() { return field_2_textOrientation; } /** * Set the text orientation field for the TextObjectBase record. * * @param field_2_textOrientation * One of * TEXT_ORIENTATION_NONE * TEXT_ORIENTATION_TOP_TO_BOTTOM * TEXT_ORIENTATION_ROT_RIGHT * TEXT_ORIENTATION_ROT_LEFT */ public void setTextOrientation(short field_2_textOrientation) { this.field_2_textOrientation = field_2_textOrientation; } /** * Get the reserved4 field for the TextObjectBase record. */ public short getReserved4() { return field_3_reserved4; } /** * Set the reserved4 field for the TextObjectBase record. */ public void setReserved4(short field_3_reserved4) { this.field_3_reserved4 = field_3_reserved4; } /** * Get the reserved5 field for the TextObjectBase record. */ public short getReserved5() { return field_4_reserved5; } /** * Set the reserved5 field for the TextObjectBase record. */ public void setReserved5(short field_4_reserved5) { this.field_4_reserved5 = field_4_reserved5; } /** * Get the reserved6 field for the TextObjectBase record. */ public short getReserved6() { return field_5_reserved6; } /** * Set the reserved6 field for the TextObjectBase record. */ public void setReserved6(short field_5_reserved6) { this.field_5_reserved6 = field_5_reserved6; } /** * Get the text length field for the TextObjectBase record. */ public short getTextLength() { return field_6_textLength; } /** * Set the text length field for the TextObjectBase record. */ public void setTextLength(short field_6_textLength) { this.field_6_textLength = field_6_textLength; } /** * Get the formatting run length field for the TextObjectBase record. */ public short getFormattingRunLength() { return field_7_formattingRunLength; } /** * Set the formatting run length field for the TextObjectBase record. */ public void setFormattingRunLength(short field_7_formattingRunLength) { this.field_7_formattingRunLength = field_7_formattingRunLength; } /** * Get the reserved7 field for the TextObjectBase record. */ public int getReserved7() { return field_8_reserved7; } /** * Set the reserved7 field for the TextObjectBase record. */ public void setReserved7(int field_8_reserved7) { this.field_8_reserved7 = field_8_reserved7; } /** * Sets the reserved1 field value. * reserved field */ public void setReserved1(boolean value) { field_1_options = reserved1.setShortBoolean(field_1_options, value); } /** * reserved field * @return the reserved1 field value. */ public boolean isReserved1() { return reserved1.isSet(field_1_options); } /** * Sets the Horizontal text alignment field value. * */ public void setHorizontalTextAlignment(short value) { field_1_options = HorizontalTextAlignment.setShortValue(field_1_options, value); } /** * * @return the Horizontal text alignment field value. */ public short getHorizontalTextAlignment() { return HorizontalTextAlignment.getShortValue(field_1_options); } /** * Sets the Vertical text alignment field value. * */ public void setVerticalTextAlignment(short value) { field_1_options = VerticalTextAlignment.setShortValue(field_1_options, value); } /** * * @return the Vertical text alignment field value. */ public short getVerticalTextAlignment() { return VerticalTextAlignment.getShortValue(field_1_options); } /** * Sets the reserved2 field value. * */ public void setReserved2(short value) { field_1_options = reserved2.setShortValue(field_1_options, value); } /** * * @return the reserved2 field value. */ public short getReserved2() { return reserved2.getShortValue(field_1_options); } /** * Sets the text locked field value. * Text has been locked */ public void setTextLocked(boolean value) { field_1_options = textLocked.setShortBoolean(field_1_options, value); } /** * Text has been locked * @return the text locked field value. */ public boolean isTextLocked() { return textLocked.isSet(field_1_options); } /** * Sets the reserved3 field value. * */ public void setReserved3(short value) { field_1_options = reserved3.setShortValue(field_1_options, value); } /** * * @return the reserved3 field value. */ public short getReserved3() { return reserved3.getShortValue(field_1_options); }} // END OF CLASS
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -