/** Sets the unused1 field value. This bit MUST be ignored */ @Internal public void setUnused1(boolean value) { field_3_info = (byte) unused1.setBoolean(field_3_info, value); }
/** * Sets the fTentative field value. A bit that specifies whether the format of the level is * tentative */ @Internal public void setFTentative(boolean value) { field_3_info = (byte) fTentative.setBoolean(field_3_info, value); }
/** * Sets the fIndentSav field value. A bit that specifies whether the level indented the text it * was applied to and that the indent needs to be removed when numbering is removed. The indent to * be removed is stored in dxaIndentSav */ @Internal public void setFIndentSav(boolean value) { field_3_info = (byte) fIndentSav.setBoolean(field_3_info, value); }
/** * Sets the fConverted field value. A bit that specifies whether the nfc of this LVLF structure * was previously a temporary value used for bidirectional compatibility that was converted into a * standard MSONFC */ @Internal public void setFConverted(boolean value) { field_3_info = (byte) fConverted.setBoolean(field_3_info, value); }
/** * Sets the fLegal field value. A bit that specifies whether this level overrides the nfc of all * inherited level numbers. If the original nfc of a level number is msonfcArabicLZ, it is * preserved. Otherwise, the nfc of the level number is overridden by msonfcArabic. */ @Internal public void setFLegal(boolean value) { field_3_info = (byte) fLegal.setBoolean(field_3_info, value); }
/** * Sets the fNoRestart field value. A bit that specifies whether the number sequence of the level * does not restart after a level is encountered that is more significant than the level to which * this LVLF corresponds */ @Internal public void setFNoRestart(boolean value) { field_3_info = (byte) fNoRestart.setBoolean(field_3_info, value); }
/** Sets the fVertMerge field value. */ public void setFVertMerge(boolean value) { field_1_rgf = (short) fVertMerge.setBoolean(field_1_rgf, value); }
/** Sets the fVertRestart field value. */ public void setFVertRestart(boolean value) { field_1_rgf = (short) fVertRestart.setBoolean(field_1_rgf, value); }
/** Sets the fBackward field value. */ public void setFBackward(boolean value) { field_1_rgf = (short) fBackward.setBoolean(field_1_rgf, value); }
/** Sets the fRotateFont field value. */ public void setFRotateFont(boolean value) { field_1_rgf = (short) fRotateFont.setBoolean(field_1_rgf, value); }
/** Sets the fVertical field value. */ public void setFVertical(boolean value) { field_1_rgf = (short) fVertical.setBoolean(field_1_rgf, value); }
/** Sets the fMerged field value. */ public void setFMerged(boolean value) { field_1_rgf = (short) fMerged.setBoolean(field_1_rgf, value); }
/** Sets the text locked field value. */ public void setTextLocked(boolean value) { field_1_options = textLocked.setBoolean(field_1_options, value); }
/** set whether the last column should be relative or not */ public final void setLastColRelative(boolean rel) { field_4_last_column = colRelative.setBoolean(field_4_last_column, rel); }
/** set whether the first column is relative */ public final void setFirstColRelative(boolean rel) { field_3_first_column = colRelative.setBoolean(field_3_first_column, rel); }