Class CTSheetPr

java.lang.Object
org.xlsx4j.sml.CTSheetPr
All Implemented Interfaces:
Child

public class CTSheetPr
extends java.lang.Object
implements Child

Java class for CT_SheetPr complex type.

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

 <complexType name="CT_SheetPr">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="tabColor" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_Color" minOccurs="0"/>
         <element name="outlinePr" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_OutlinePr" minOccurs="0"/>
         <element name="pageSetUpPr" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_PageSetUpPr" minOccurs="0"/>
       </sequence>
       <attribute name="syncHorizontal" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="syncVertical" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="syncRef" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_Ref" />
       <attribute name="transitionEvaluation" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="transitionEntry" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="published" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="codeName" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="filterMode" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="enableFormatConditionsCalculation" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

  • Method Details

    • getTabColor

      public CTColor getTabColor()
      Gets the value of the tabColor property.
      Returns:
      possible object is CTColor
    • setTabColor

      public void setTabColor​(CTColor value)
      Sets the value of the tabColor property.
      Parameters:
      value - allowed object is CTColor
    • getOutlinePr

      public CTOutlinePr getOutlinePr()
      Gets the value of the outlinePr property.
      Returns:
      possible object is CTOutlinePr
    • setOutlinePr

      public void setOutlinePr​(CTOutlinePr value)
      Sets the value of the outlinePr property.
      Parameters:
      value - allowed object is CTOutlinePr
    • getPageSetUpPr

      public CTPageSetUpPr getPageSetUpPr()
      Gets the value of the pageSetUpPr property.
      Returns:
      possible object is CTPageSetUpPr
    • setPageSetUpPr

      public void setPageSetUpPr​(CTPageSetUpPr value)
      Sets the value of the pageSetUpPr property.
      Parameters:
      value - allowed object is CTPageSetUpPr
    • isSyncHorizontal

      public boolean isSyncHorizontal()
      Gets the value of the syncHorizontal property.
      Returns:
      possible object is Boolean
    • setSyncHorizontal

      public void setSyncHorizontal​(java.lang.Boolean value)
      Sets the value of the syncHorizontal property.
      Parameters:
      value - allowed object is Boolean
    • isSyncVertical

      public boolean isSyncVertical()
      Gets the value of the syncVertical property.
      Returns:
      possible object is Boolean
    • setSyncVertical

      public void setSyncVertical​(java.lang.Boolean value)
      Sets the value of the syncVertical property.
      Parameters:
      value - allowed object is Boolean
    • getSyncRef

      public java.lang.String getSyncRef()
      Gets the value of the syncRef property.
      Returns:
      possible object is String
    • setSyncRef

      public void setSyncRef​(java.lang.String value)
      Sets the value of the syncRef property.
      Parameters:
      value - allowed object is String
    • isTransitionEvaluation

      public boolean isTransitionEvaluation()
      Gets the value of the transitionEvaluation property.
      Returns:
      possible object is Boolean
    • setTransitionEvaluation

      public void setTransitionEvaluation​(java.lang.Boolean value)
      Sets the value of the transitionEvaluation property.
      Parameters:
      value - allowed object is Boolean
    • isTransitionEntry

      public boolean isTransitionEntry()
      Gets the value of the transitionEntry property.
      Returns:
      possible object is Boolean
    • setTransitionEntry

      public void setTransitionEntry​(java.lang.Boolean value)
      Sets the value of the transitionEntry property.
      Parameters:
      value - allowed object is Boolean
    • isPublished

      public boolean isPublished()
      Gets the value of the published property.
      Returns:
      possible object is Boolean
    • setPublished

      public void setPublished​(java.lang.Boolean value)
      Sets the value of the published property.
      Parameters:
      value - allowed object is Boolean
    • getCodeName

      public java.lang.String getCodeName()
      Gets the value of the codeName property.
      Returns:
      possible object is String
    • setCodeName

      public void setCodeName​(java.lang.String value)
      Sets the value of the codeName property.
      Parameters:
      value - allowed object is String
    • isFilterMode

      public boolean isFilterMode()
      Gets the value of the filterMode property.
      Returns:
      possible object is Boolean
    • setFilterMode

      public void setFilterMode​(java.lang.Boolean value)
      Sets the value of the filterMode property.
      Parameters:
      value - allowed object is Boolean
    • isEnableFormatConditionsCalculation

      public boolean isEnableFormatConditionsCalculation()
      Gets the value of the enableFormatConditionsCalculation property.
      Returns:
      possible object is Boolean
    • setEnableFormatConditionsCalculation

      public void setEnableFormatConditionsCalculation​(java.lang.Boolean value)
      Sets the value of the enableFormatConditionsCalculation property.
      Parameters:
      value - allowed object is Boolean
    • getParent

      public java.lang.Object getParent()
      Gets the parent object in the object tree representing the unmarshalled xml document.
      Specified by:
      getParent in interface Child
      Returns:
      The parent object.
    • setParent

      public void setParent​(java.lang.Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal​(javax.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)
      This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
      Parameters:
      parent - The parent object in the object tree.
      unmarshaller - The unmarshaller that generated the instance.