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

com.hfg.xml.msofficexml.xlsx.spreadsheetDrawing.SsDrawNonVisualShapeDrawingProperties Maven / Gradle / Ivy

There is a newer version: 20240423
Show newest version
package com.hfg.xml.msofficexml.xlsx.spreadsheetDrawing;


import com.hfg.xml.msofficexml.xlsx.Xlsx;
import com.hfg.xml.msofficexml.xlsx.spreadsheetml.SsmlXMLTag;

//------------------------------------------------------------------------------
/**
 Represents an Office Open XML non-visual shape drawing properties (<xdr:nvSpPr>) tag.
 
@author J. Alex Taylor, hairyfatguy.com
*/ //------------------------------------------------------------------------------ // com.hfg XML/HTML Coding Library // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com // [email protected] //------------------------------------------------------------------------------ public class SsDrawNonVisualShapeDrawingProperties extends SsmlXMLTag { private SsDrawNonVisualDrawingProperties mNonVisualDrawingProperties; private SsDrawNonVisualShapeProperties mNonVisualShapeProperties; //--------------------------------------------------------------------------- public SsDrawNonVisualShapeDrawingProperties(Xlsx inXlsx) { super(SsDrawXML.NON_VISUAL_SHAPE_DRAWING_PROPS, inXlsx); init(); } //--------------------------------------------------------------------------- private void init() { getNonVisualDrawingProperties(); getNonVisualShapeProperties(); } //--------------------------------------------------------------------------- /** * Returns the non-visual drawing properties (<xdr:cNvPr>) tag if one exists or else instantiates a new one. * @return the non-visual drawing properties (<xdr:cNvPr>) tag */ public SsDrawNonVisualDrawingProperties getNonVisualDrawingProperties() { if (null == mNonVisualDrawingProperties) { // Check if it has been added via addSubtag()... mNonVisualDrawingProperties = getOptionalSubtagByName(SsDrawXML.NON_VISUAL_DRAWING_PROPS); if (null == mNonVisualDrawingProperties) { mNonVisualDrawingProperties = new SsDrawNonVisualDrawingProperties(getParentDoc()); addSubtag(mNonVisualDrawingProperties); } } return mNonVisualDrawingProperties; } //--------------------------------------------------------------------------- /** * Returns the non-visual shape properties (<xdr:cNvSpPr>) tag if one exists or else instantiates a new one. * @return the non-visual shape properties (<xdr:cNvSpPr>) tag */ public SsDrawNonVisualShapeProperties getNonVisualShapeProperties() { if (null == mNonVisualShapeProperties) { // Check if it has been added via addSubtag()... mNonVisualShapeProperties = getOptionalSubtagByName(SsDrawXML.NON_VISUAL_SHAPE_PROPS); if (null == mNonVisualShapeProperties) { mNonVisualShapeProperties = new SsDrawNonVisualShapeProperties(getParentDoc()); addSubtag(mNonVisualShapeProperties); } } return mNonVisualShapeProperties; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy