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

📄 legendrecord.java

📁 Office格式转换代码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
     */    public int getXAxisUpperLeft()    {        return field_1_xAxisUpperLeft;    }    /**     * Set the x axis upper left field for the Legend record.     */    public void setXAxisUpperLeft(int field_1_xAxisUpperLeft)    {        this.field_1_xAxisUpperLeft = field_1_xAxisUpperLeft;    }    /**     * Get the y axis upper left field for the Legend record.     */    public int getYAxisUpperLeft()    {        return field_2_yAxisUpperLeft;    }    /**     * Set the y axis upper left field for the Legend record.     */    public void setYAxisUpperLeft(int field_2_yAxisUpperLeft)    {        this.field_2_yAxisUpperLeft = field_2_yAxisUpperLeft;    }    /**     * Get the x size field for the Legend record.     */    public int getXSize()    {        return field_3_xSize;    }    /**     * Set the x size field for the Legend record.     */    public void setXSize(int field_3_xSize)    {        this.field_3_xSize = field_3_xSize;    }    /**     * Get the y size field for the Legend record.     */    public int getYSize()    {        return field_4_ySize;    }    /**     * Set the y size field for the Legend record.     */    public void setYSize(int field_4_ySize)    {        this.field_4_ySize = field_4_ySize;    }    /**     * Get the type field for the Legend record.     *     * @return  One of      *        TYPE_BOTTOM     *        TYPE_CORNER     *        TYPE_TOP     *        TYPE_RIGHT     *        TYPE_LEFT     *        TYPE_UNDOCKED     */    public byte getType()    {        return field_5_type;    }    /**     * Set the type field for the Legend record.     *     * @param field_5_type     *        One of      *        TYPE_BOTTOM     *        TYPE_CORNER     *        TYPE_TOP     *        TYPE_RIGHT     *        TYPE_LEFT     *        TYPE_UNDOCKED     */    public void setType(byte field_5_type)    {        this.field_5_type = field_5_type;    }    /**     * Get the spacing field for the Legend record.     *     * @return  One of      *        SPACING_CLOSE     *        SPACING_MEDIUM     *        SPACING_OPEN     */    public byte getSpacing()    {        return field_6_spacing;    }    /**     * Set the spacing field for the Legend record.     *     * @param field_6_spacing     *        One of      *        SPACING_CLOSE     *        SPACING_MEDIUM     *        SPACING_OPEN     */    public void setSpacing(byte field_6_spacing)    {        this.field_6_spacing = field_6_spacing;    }    /**     * Get the options field for the Legend record.     */    public short getOptions()    {        return field_7_options;    }    /**     * Set the options field for the Legend record.     */    public void setOptions(short field_7_options)    {        this.field_7_options = field_7_options;    }    /**     * Sets the auto position field value.     * automatic positioning (1=docked)     */    public void setAutoPosition(boolean value)    {        field_7_options = autoPosition.setShortBoolean(field_7_options, value);    }    /**     * automatic positioning (1=docked)     * @return  the auto position field value.     */    public boolean isAutoPosition()    {        return autoPosition.isSet(field_7_options);    }    /**     * Sets the auto series field value.     * excel 5 only (true)     */    public void setAutoSeries(boolean value)    {        field_7_options = autoSeries.setShortBoolean(field_7_options, value);    }    /**     * excel 5 only (true)     * @return  the auto series field value.     */    public boolean isAutoSeries()    {        return autoSeries.isSet(field_7_options);    }    /**     * Sets the auto x positioning field value.     * position of legend on the x axis is automatic     */    public void setAutoXPositioning(boolean value)    {        field_7_options = autoXPositioning.setShortBoolean(field_7_options, value);    }    /**     * position of legend on the x axis is automatic     * @return  the auto x positioning field value.     */    public boolean isAutoXPositioning()    {        return autoXPositioning.isSet(field_7_options);    }    /**     * Sets the auto y positioning field value.     * position of legend on the y axis is automatic     */    public void setAutoYPositioning(boolean value)    {        field_7_options = autoYPositioning.setShortBoolean(field_7_options, value);    }    /**     * position of legend on the y axis is automatic     * @return  the auto y positioning field value.     */    public boolean isAutoYPositioning()    {        return autoYPositioning.isSet(field_7_options);    }    /**     * Sets the vertical field value.     * vertical or horizontal legend (1 or 0 respectively).  Always 0 if not automatic.     */    public void setVertical(boolean value)    {        field_7_options = vertical.setShortBoolean(field_7_options, value);    }    /**     * vertical or horizontal legend (1 or 0 respectively).  Always 0 if not automatic.     * @return  the vertical field value.     */    public boolean isVertical()    {        return vertical.isSet(field_7_options);    }    /**     * Sets the data table field value.     * 1 if chart contains data table     */    public void setDataTable(boolean value)    {        field_7_options = dataTable.setShortBoolean(field_7_options, value);    }    /**     * 1 if chart contains data table     * @return  the data table field value.     */    public boolean isDataTable()    {        return dataTable.isSet(field_7_options);    }}  // END OF CLASS

⌨️ 快捷键说明

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