Class CTObjectPr

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

public class CTObjectPr extends Object implements Child

Java class for CT_ObjectPr complex type.

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

 <complexType name="CT_ObjectPr">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="anchor" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_ObjectAnchor"/>
       </sequence>
       <attribute name="locked" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="defaultSize" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="print" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="disabled" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="uiObject" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="autoFill" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="autoLine" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="autoPict" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="macro" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_Formula" />
       <attribute name="altText" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="dde" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute ref="{http://schemas.openxmlformats.org/officeDocument/2006/relationships}id"/>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTObjectPr

      public CTObjectPr()
  • Method Details

    • getAnchor

      public CTObjectAnchor getAnchor()
      Gets the value of the anchor property.
      Returns:
      possible object is CTObjectAnchor
    • setAnchor

      public void setAnchor(CTObjectAnchor value)
      Sets the value of the anchor property.
      Parameters:
      value - allowed object is CTObjectAnchor
    • isLocked

      public boolean isLocked()
      Gets the value of the locked property.
      Returns:
      possible object is Boolean
    • setLocked

      public void setLocked(Boolean value)
      Sets the value of the locked property.
      Parameters:
      value - allowed object is Boolean
    • isDefaultSize

      public boolean isDefaultSize()
      Gets the value of the defaultSize property.
      Returns:
      possible object is Boolean
    • setDefaultSize

      public void setDefaultSize(Boolean value)
      Sets the value of the defaultSize property.
      Parameters:
      value - allowed object is Boolean
    • isPrint

      public boolean isPrint()
      Gets the value of the print property.
      Returns:
      possible object is Boolean
    • setPrint

      public void setPrint(Boolean value)
      Sets the value of the print property.
      Parameters:
      value - allowed object is Boolean
    • isDisabled

      public boolean isDisabled()
      Gets the value of the disabled property.
      Returns:
      possible object is Boolean
    • setDisabled

      public void setDisabled(Boolean value)
      Sets the value of the disabled property.
      Parameters:
      value - allowed object is Boolean
    • isUiObject

      public boolean isUiObject()
      Gets the value of the uiObject property.
      Returns:
      possible object is Boolean
    • setUiObject

      public void setUiObject(Boolean value)
      Sets the value of the uiObject property.
      Parameters:
      value - allowed object is Boolean
    • isAutoFill

      public boolean isAutoFill()
      Gets the value of the autoFill property.
      Returns:
      possible object is Boolean
    • setAutoFill

      public void setAutoFill(Boolean value)
      Sets the value of the autoFill property.
      Parameters:
      value - allowed object is Boolean
    • isAutoLine

      public boolean isAutoLine()
      Gets the value of the autoLine property.
      Returns:
      possible object is Boolean
    • setAutoLine

      public void setAutoLine(Boolean value)
      Sets the value of the autoLine property.
      Parameters:
      value - allowed object is Boolean
    • isAutoPict

      public boolean isAutoPict()
      Gets the value of the autoPict property.
      Returns:
      possible object is Boolean
    • setAutoPict

      public void setAutoPict(Boolean value)
      Sets the value of the autoPict property.
      Parameters:
      value - allowed object is Boolean
    • getMacro

      public String getMacro()
      Gets the value of the macro property.
      Returns:
      possible object is String
    • setMacro

      public void setMacro(String value)
      Sets the value of the macro property.
      Parameters:
      value - allowed object is String
    • getAltText

      public String getAltText()
      Gets the value of the altText property.
      Returns:
      possible object is String
    • setAltText

      public void setAltText(String value)
      Sets the value of the altText property.
      Parameters:
      value - allowed object is String
    • isDde

      public boolean isDde()
      Gets the value of the dde property.
      Returns:
      possible object is Boolean
    • setDde

      public void setDde(Boolean value)
      Sets the value of the dde property.
      Parameters:
      value - allowed object is Boolean
    • getId

      public String getId()
      Gets the value of the id property.
      Returns:
      possible object is String
    • setId

      public void setId(String value)
      Sets the value of the id property.
      Parameters:
      value - allowed object is String
    • 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.