Class CTSheetFormatPr

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

public class CTSheetFormatPr extends Object implements Child

Java class for CT_SheetFormatPr complex type.

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

 <complexType name="CT_SheetFormatPr">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="baseColWidth" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="8" />
       <attribute name="defaultColWidth" type="{http://www.w3.org/2001/XMLSchema}double" />
       <attribute name="defaultRowHeight" use="required" type="{http://www.w3.org/2001/XMLSchema}double" />
       <attribute name="customHeight" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="zeroHeight" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="thickTop" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="thickBottom" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="outlineLevelRow" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" default="0" />
       <attribute name="outlineLevelCol" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" default="0" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • baseColWidth

      protected Long baseColWidth
    • defaultColWidth

      protected Double defaultColWidth
    • defaultRowHeight

      protected double defaultRowHeight
    • customHeight

      protected Boolean customHeight
    • zeroHeight

      protected Boolean zeroHeight
    • thickTop

      protected Boolean thickTop
    • thickBottom

      protected Boolean thickBottom
    • outlineLevelRow

      protected Short outlineLevelRow
    • outlineLevelCol

      protected Short outlineLevelCol
  • Constructor Details

    • CTSheetFormatPr

      public CTSheetFormatPr()
  • Method Details

    • getBaseColWidth

      public long getBaseColWidth()
      Gets the value of the baseColWidth property.
      Returns:
      possible object is Long
    • setBaseColWidth

      public void setBaseColWidth(Long value)
      Sets the value of the baseColWidth property.
      Parameters:
      value - allowed object is Long
    • getDefaultColWidth

      public Double getDefaultColWidth()
      Gets the value of the defaultColWidth property.
      Returns:
      possible object is Double
    • setDefaultColWidth

      public void setDefaultColWidth(Double value)
      Sets the value of the defaultColWidth property.
      Parameters:
      value - allowed object is Double
    • getDefaultRowHeight

      public double getDefaultRowHeight()
      Gets the value of the defaultRowHeight property.
    • setDefaultRowHeight

      public void setDefaultRowHeight(double value)
      Sets the value of the defaultRowHeight property.
    • isCustomHeight

      public boolean isCustomHeight()
      Gets the value of the customHeight property.
      Returns:
      possible object is Boolean
    • setCustomHeight

      public void setCustomHeight(Boolean value)
      Sets the value of the customHeight property.
      Parameters:
      value - allowed object is Boolean
    • isZeroHeight

      public boolean isZeroHeight()
      Gets the value of the zeroHeight property.
      Returns:
      possible object is Boolean
    • setZeroHeight

      public void setZeroHeight(Boolean value)
      Sets the value of the zeroHeight property.
      Parameters:
      value - allowed object is Boolean
    • isThickTop

      public boolean isThickTop()
      Gets the value of the thickTop property.
      Returns:
      possible object is Boolean
    • setThickTop

      public void setThickTop(Boolean value)
      Sets the value of the thickTop property.
      Parameters:
      value - allowed object is Boolean
    • isThickBottom

      public boolean isThickBottom()
      Gets the value of the thickBottom property.
      Returns:
      possible object is Boolean
    • setThickBottom

      public void setThickBottom(Boolean value)
      Sets the value of the thickBottom property.
      Parameters:
      value - allowed object is Boolean
    • getOutlineLevelRow

      public short getOutlineLevelRow()
      Gets the value of the outlineLevelRow property.
      Returns:
      possible object is Short
    • setOutlineLevelRow

      public void setOutlineLevelRow(Short value)
      Sets the value of the outlineLevelRow property.
      Parameters:
      value - allowed object is Short
    • getOutlineLevelCol

      public short getOutlineLevelCol()
      Gets the value of the outlineLevelCol property.
      Returns:
      possible object is Short
    • setOutlineLevelCol

      public void setOutlineLevelCol(Short value)
      Sets the value of the outlineLevelCol property.
      Parameters:
      value - allowed object is Short
    • getParent

      public 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(Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, 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.