All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xlsx4j.sml.CTPageSetup Maven / Gradle / Ivy

Go to download

docx4j is a library which helps you to work with the Office Open XML file format as used in docx documents, pptx presentations, and xlsx spreadsheets.

There is a newer version: 6.1.2
Show newest version
/*
 *  Copyright 2010, Plutext Pty Ltd.
 *   
 *  This file is part of docx4j.

    docx4j is licensed under the Apache License, Version 2.0 (the "License"); 
    you may not use this file except in compliance with the License. 

    You may obtain a copy of the License at 

        http://www.apache.org/licenses/LICENSE-2.0 

    Unless required by applicable law or agreed to in writing, software 
    distributed under the License is distributed on an "AS IS" BASIS, 
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
    See the License for the specific language governing permissions and 
    limitations under the License.

 */


package org.xlsx4j.sml;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CT_PageSetup complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CT_PageSetup">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="paperSize" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="1" />
 *       <attribute name="scale" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="100" />
 *       <attribute name="firstPageNumber" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="1" />
 *       <attribute name="fitToWidth" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="1" />
 *       <attribute name="fitToHeight" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="1" />
 *       <attribute name="pageOrder" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_PageOrder" default="downThenOver" />
 *       <attribute name="orientation" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_Orientation" default="default" />
 *       <attribute name="usePrinterDefaults" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
 *       <attribute name="blackAndWhite" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="draft" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="cellComments" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_CellComments" default="none" />
 *       <attribute name="useFirstPageNumber" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="errors" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_PrintError" default="displayed" />
 *       <attribute name="horizontalDpi" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="600" />
 *       <attribute name="verticalDpi" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="600" />
 *       <attribute name="copies" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="1" />
 *       <attribute ref="{http://schemas.openxmlformats.org/officeDocument/2006/relationships}id"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CT_PageSetup") public class CTPageSetup { @XmlAttribute @XmlSchemaType(name = "unsignedInt") protected Long paperSize; @XmlAttribute @XmlSchemaType(name = "unsignedInt") protected Long scale; @XmlAttribute @XmlSchemaType(name = "unsignedInt") protected Long firstPageNumber; @XmlAttribute @XmlSchemaType(name = "unsignedInt") protected Long fitToWidth; @XmlAttribute @XmlSchemaType(name = "unsignedInt") protected Long fitToHeight; @XmlAttribute protected STPageOrder pageOrder; @XmlAttribute protected STOrientation orientation; @XmlAttribute protected Boolean usePrinterDefaults; @XmlAttribute protected Boolean blackAndWhite; @XmlAttribute protected Boolean draft; @XmlAttribute protected STCellComments cellComments; @XmlAttribute protected Boolean useFirstPageNumber; @XmlAttribute protected STPrintError errors; @XmlAttribute @XmlSchemaType(name = "unsignedInt") protected Long horizontalDpi; @XmlAttribute @XmlSchemaType(name = "unsignedInt") protected Long verticalDpi; @XmlAttribute @XmlSchemaType(name = "unsignedInt") protected Long copies; @XmlAttribute(namespace = "http://schemas.openxmlformats.org/officeDocument/2006/relationships") protected String id; /** * Gets the value of the paperSize property. * * @return * possible object is * {@link Long } * */ public long getPaperSize() { if (paperSize == null) { return 1L; } else { return paperSize; } } /** * Sets the value of the paperSize property. * * @param value * allowed object is * {@link Long } * */ public void setPaperSize(Long value) { this.paperSize = value; } /** * Gets the value of the scale property. * * @return * possible object is * {@link Long } * */ public long getScale() { if (scale == null) { return 100L; } else { return scale; } } /** * Sets the value of the scale property. * * @param value * allowed object is * {@link Long } * */ public void setScale(Long value) { this.scale = value; } /** * Gets the value of the firstPageNumber property. * * @return * possible object is * {@link Long } * */ public long getFirstPageNumber() { if (firstPageNumber == null) { return 1L; } else { return firstPageNumber; } } /** * Sets the value of the firstPageNumber property. * * @param value * allowed object is * {@link Long } * */ public void setFirstPageNumber(Long value) { this.firstPageNumber = value; } /** * Gets the value of the fitToWidth property. * * @return * possible object is * {@link Long } * */ public long getFitToWidth() { if (fitToWidth == null) { return 1L; } else { return fitToWidth; } } /** * Sets the value of the fitToWidth property. * * @param value * allowed object is * {@link Long } * */ public void setFitToWidth(Long value) { this.fitToWidth = value; } /** * Gets the value of the fitToHeight property. * * @return * possible object is * {@link Long } * */ public long getFitToHeight() { if (fitToHeight == null) { return 1L; } else { return fitToHeight; } } /** * Sets the value of the fitToHeight property. * * @param value * allowed object is * {@link Long } * */ public void setFitToHeight(Long value) { this.fitToHeight = value; } /** * Gets the value of the pageOrder property. * * @return * possible object is * {@link STPageOrder } * */ public STPageOrder getPageOrder() { if (pageOrder == null) { return STPageOrder.DOWN_THEN_OVER; } else { return pageOrder; } } /** * Sets the value of the pageOrder property. * * @param value * allowed object is * {@link STPageOrder } * */ public void setPageOrder(STPageOrder value) { this.pageOrder = value; } /** * Gets the value of the orientation property. * * @return * possible object is * {@link STOrientation } * */ public STOrientation getOrientation() { if (orientation == null) { return STOrientation.DEFAULT; } else { return orientation; } } /** * Sets the value of the orientation property. * * @param value * allowed object is * {@link STOrientation } * */ public void setOrientation(STOrientation value) { this.orientation = value; } /** * Gets the value of the usePrinterDefaults property. * * @return * possible object is * {@link Boolean } * */ public boolean isUsePrinterDefaults() { if (usePrinterDefaults == null) { return true; } else { return usePrinterDefaults; } } /** * Sets the value of the usePrinterDefaults property. * * @param value * allowed object is * {@link Boolean } * */ public void setUsePrinterDefaults(Boolean value) { this.usePrinterDefaults = value; } /** * Gets the value of the blackAndWhite property. * * @return * possible object is * {@link Boolean } * */ public boolean isBlackAndWhite() { if (blackAndWhite == null) { return false; } else { return blackAndWhite; } } /** * Sets the value of the blackAndWhite property. * * @param value * allowed object is * {@link Boolean } * */ public void setBlackAndWhite(Boolean value) { this.blackAndWhite = value; } /** * Gets the value of the draft property. * * @return * possible object is * {@link Boolean } * */ public boolean isDraft() { if (draft == null) { return false; } else { return draft; } } /** * Sets the value of the draft property. * * @param value * allowed object is * {@link Boolean } * */ public void setDraft(Boolean value) { this.draft = value; } /** * Gets the value of the cellComments property. * * @return * possible object is * {@link STCellComments } * */ public STCellComments getCellComments() { if (cellComments == null) { return STCellComments.NONE; } else { return cellComments; } } /** * Sets the value of the cellComments property. * * @param value * allowed object is * {@link STCellComments } * */ public void setCellComments(STCellComments value) { this.cellComments = value; } /** * Gets the value of the useFirstPageNumber property. * * @return * possible object is * {@link Boolean } * */ public boolean isUseFirstPageNumber() { if (useFirstPageNumber == null) { return false; } else { return useFirstPageNumber; } } /** * Sets the value of the useFirstPageNumber property. * * @param value * allowed object is * {@link Boolean } * */ public void setUseFirstPageNumber(Boolean value) { this.useFirstPageNumber = value; } /** * Gets the value of the errors property. * * @return * possible object is * {@link STPrintError } * */ public STPrintError getErrors() { if (errors == null) { return STPrintError.DISPLAYED; } else { return errors; } } /** * Sets the value of the errors property. * * @param value * allowed object is * {@link STPrintError } * */ public void setErrors(STPrintError value) { this.errors = value; } /** * Gets the value of the horizontalDpi property. * * @return * possible object is * {@link Long } * */ public long getHorizontalDpi() { if (horizontalDpi == null) { return 600L; } else { return horizontalDpi; } } /** * Sets the value of the horizontalDpi property. * * @param value * allowed object is * {@link Long } * */ public void setHorizontalDpi(Long value) { this.horizontalDpi = value; } /** * Gets the value of the verticalDpi property. * * @return * possible object is * {@link Long } * */ public long getVerticalDpi() { if (verticalDpi == null) { return 600L; } else { return verticalDpi; } } /** * Sets the value of the verticalDpi property. * * @param value * allowed object is * {@link Long } * */ public void setVerticalDpi(Long value) { this.verticalDpi = value; } /** * Gets the value of the copies property. * * @return * possible object is * {@link Long } * */ public long getCopies() { if (copies == null) { return 1L; } else { return copies; } } /** * Sets the value of the copies property. * * @param value * allowed object is * {@link Long } * */ public void setCopies(Long value) { this.copies = value; } /** * Id * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy