⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 valuerangerecord.java

📁 Office格式转换代码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
    /**     * Get the maximum axis value field for the ValueRange record.     */    public double getMaximumAxisValue()    {        return field_2_maximumAxisValue;    }    /**     * Set the maximum axis value field for the ValueRange record.     */    public void setMaximumAxisValue(double field_2_maximumAxisValue)    {        this.field_2_maximumAxisValue = field_2_maximumAxisValue;    }    /**     * Get the major increment field for the ValueRange record.     */    public double getMajorIncrement()    {        return field_3_majorIncrement;    }    /**     * Set the major increment field for the ValueRange record.     */    public void setMajorIncrement(double field_3_majorIncrement)    {        this.field_3_majorIncrement = field_3_majorIncrement;    }    /**     * Get the minor increment field for the ValueRange record.     */    public double getMinorIncrement()    {        return field_4_minorIncrement;    }    /**     * Set the minor increment field for the ValueRange record.     */    public void setMinorIncrement(double field_4_minorIncrement)    {        this.field_4_minorIncrement = field_4_minorIncrement;    }    /**     * Get the category axis cross field for the ValueRange record.     */    public double getCategoryAxisCross()    {        return field_5_categoryAxisCross;    }    /**     * Set the category axis cross field for the ValueRange record.     */    public void setCategoryAxisCross(double field_5_categoryAxisCross)    {        this.field_5_categoryAxisCross = field_5_categoryAxisCross;    }    /**     * Get the options field for the ValueRange record.     */    public short getOptions()    {        return field_6_options;    }    /**     * Set the options field for the ValueRange record.     */    public void setOptions(short field_6_options)    {        this.field_6_options = field_6_options;    }    /**     * Sets the automatic minimum field value.     * automatic minimum value selected     */    public void setAutomaticMinimum(boolean value)    {        field_6_options = automaticMinimum.setShortBoolean(field_6_options, value);    }    /**     * automatic minimum value selected     * @return  the automatic minimum field value.     */    public boolean isAutomaticMinimum()    {        return automaticMinimum.isSet(field_6_options);    }    /**     * Sets the automatic maximum field value.     * automatic maximum value selected     */    public void setAutomaticMaximum(boolean value)    {        field_6_options = automaticMaximum.setShortBoolean(field_6_options, value);    }    /**     * automatic maximum value selected     * @return  the automatic maximum field value.     */    public boolean isAutomaticMaximum()    {        return automaticMaximum.isSet(field_6_options);    }    /**     * Sets the automatic major field value.     * automatic major unit selected     */    public void setAutomaticMajor(boolean value)    {        field_6_options = automaticMajor.setShortBoolean(field_6_options, value);    }    /**     * automatic major unit selected     * @return  the automatic major field value.     */    public boolean isAutomaticMajor()    {        return automaticMajor.isSet(field_6_options);    }    /**     * Sets the automatic minor field value.     * automatic minor unit selected     */    public void setAutomaticMinor(boolean value)    {        field_6_options = automaticMinor.setShortBoolean(field_6_options, value);    }    /**     * automatic minor unit selected     * @return  the automatic minor field value.     */    public boolean isAutomaticMinor()    {        return automaticMinor.isSet(field_6_options);    }    /**     * Sets the automatic category crossing field value.     * category crossing point is automatically selected     */    public void setAutomaticCategoryCrossing(boolean value)    {        field_6_options = automaticCategoryCrossing.setShortBoolean(field_6_options, value);    }    /**     * category crossing point is automatically selected     * @return  the automatic category crossing field value.     */    public boolean isAutomaticCategoryCrossing()    {        return automaticCategoryCrossing.isSet(field_6_options);    }    /**     * Sets the logarithmic scale field value.     * use logarithmic scale     */    public void setLogarithmicScale(boolean value)    {        field_6_options = logarithmicScale.setShortBoolean(field_6_options, value);    }    /**     * use logarithmic scale     * @return  the logarithmic scale field value.     */    public boolean isLogarithmicScale()    {        return logarithmicScale.isSet(field_6_options);    }    /**     * Sets the values in reverse field value.     * values are reverses in graph     */    public void setValuesInReverse(boolean value)    {        field_6_options = valuesInReverse.setShortBoolean(field_6_options, value);    }    /**     * values are reverses in graph     * @return  the values in reverse field value.     */    public boolean isValuesInReverse()    {        return valuesInReverse.isSet(field_6_options);    }    /**     * Sets the cross category axis at maximum field value.     * category axis to cross at maximum value     */    public void setCrossCategoryAxisAtMaximum(boolean value)    {        field_6_options = crossCategoryAxisAtMaximum.setShortBoolean(field_6_options, value);    }    /**     * category axis to cross at maximum value     * @return  the cross category axis at maximum field value.     */    public boolean isCrossCategoryAxisAtMaximum()    {        return crossCategoryAxisAtMaximum.isSet(field_6_options);    }    /**     * Sets the reserved field value.     * reserved, must equal 1 (excel dev. guide says otherwise)     */    public void setReserved(boolean value)    {        field_6_options = reserved.setShortBoolean(field_6_options, value);    }    /**     * reserved, must equal 1 (excel dev. guide says otherwise)     * @return  the reserved field value.     */    public boolean isReserved()    {        return reserved.isSet(field_6_options);    }}  // END OF CLASS

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -