Class CTPane

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

public class CTPane
extends java.lang.Object
implements Child

Java class for CT_Pane complex type.

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

 <complexType name="CT_Pane">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="xSplit" type="{http://www.w3.org/2001/XMLSchema}double" default="0" />
       <attribute name="ySplit" type="{http://www.w3.org/2001/XMLSchema}double" default="0" />
       <attribute name="topLeftCell" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_CellRef" />
       <attribute name="activePane" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_Pane" default="topLeft" />
       <attribute name="state" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_PaneState" default="split" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected STPane activePane  
    protected STPaneState state  
    protected java.lang.String topLeftCell  
    protected java.lang.Double xSplit  
    protected java.lang.Double ySplit  
  • Constructor Summary

    Constructors 
    Constructor Description
    CTPane()  
  • Method Summary

    Modifier and Type Method Description
    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.
    STPane getActivePane()
    Gets the value of the activePane property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    STPaneState getState()
    Gets the value of the state property.
    java.lang.String getTopLeftCell()
    Gets the value of the topLeftCell property.
    double getXSplit()
    Gets the value of the xSplit property.
    double getYSplit()
    Gets the value of the ySplit property.
    void setActivePane​(STPane value)
    Sets the value of the activePane property.
    void setParent​(java.lang.Object parent)  
    void setState​(STPaneState value)
    Sets the value of the state property.
    void setTopLeftCell​(java.lang.String value)
    Sets the value of the topLeftCell property.
    void setXSplit​(java.lang.Double value)
    Sets the value of the xSplit property.
    void setYSplit​(java.lang.Double value)
    Sets the value of the ySplit property.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

  • Method Details

    • getXSplit

      public double getXSplit()
      Gets the value of the xSplit property.
      Returns:
      possible object is Double
    • setXSplit

      public void setXSplit​(java.lang.Double value)
      Sets the value of the xSplit property.
      Parameters:
      value - allowed object is Double
    • getYSplit

      public double getYSplit()
      Gets the value of the ySplit property.
      Returns:
      possible object is Double
    • setYSplit

      public void setYSplit​(java.lang.Double value)
      Sets the value of the ySplit property.
      Parameters:
      value - allowed object is Double
    • getTopLeftCell

      public java.lang.String getTopLeftCell()
      Gets the value of the topLeftCell property.
      Returns:
      possible object is String
    • setTopLeftCell

      public void setTopLeftCell​(java.lang.String value)
      Sets the value of the topLeftCell property.
      Parameters:
      value - allowed object is String
    • getActivePane

      public STPane getActivePane()
      Gets the value of the activePane property.
      Returns:
      possible object is STPane
    • setActivePane

      public void setActivePane​(STPane value)
      Sets the value of the activePane property.
      Parameters:
      value - allowed object is STPane
    • getState

      public STPaneState getState()
      Gets the value of the state property.
      Returns:
      possible object is STPaneState
    • setState

      public void setState​(STPaneState value)
      Sets the value of the state property.
      Parameters:
      value - allowed object is STPaneState
    • 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.