Modified: poi/site/publish/apidocs/org/apache/poi/util/StringUtil.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/StringUtil.html?rev=1799833&r1=1799832&r2=1799833&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/StringUtil.html (original) +++ poi/site/publish/apidocs/org/apache/poi/util/StringUtil.html Sun Jun 25 19:17:03 2017 @@ -38,7 +38,7 @@ </div> <div class="subNav"> <ul class="navList"> -<li><a href="../../../../org/apache/poi/util/ShortField.html" title="class in org.apache.poi.util"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../../org/apache/poi/util/StaxHelper.html" title="class in org.apache.poi.util"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/apache/poi/util/StringUtil.StringsIterator.html" title="class in org.apache.poi.util"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> @@ -818,7 +818,7 @@ public static java.lang.String  </div> <div class="subNav"> <ul class="navList"> -<li><a href="../../../../org/apache/poi/util/ShortField.html" title="class in org.apache.poi.util"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../../org/apache/poi/util/StaxHelper.html" title="class in org.apache.poi.util"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/apache/poi/util/StringUtil.StringsIterator.html" title="class in org.apache.poi.util"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList">
Modified: poi/site/publish/apidocs/org/apache/poi/util/Units.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/Units.html?rev=1799833&r1=1799832&r2=1799833&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/Units.html (original) +++ poi/site/publish/apidocs/org/apache/poi/util/Units.html Sun Jun 25 19:17:03 2017 @@ -121,9 +121,21 @@ extends java.lang.Object</pre> <th class="colLast" scope="col">Field and Description</th> </tr> <tr class="altColor"> +<td class="colFirst"><code>static float</code></td> +<td class="colLast"><code><strong><a href="../../../../org/apache/poi/util/Units.html#DEFAULT_CHARACTER_WIDTH">DEFAULT_CHARACTER_WIDTH</a></strong></code> +<div class="block">Width of one "standard character" of the default font in pixels.</div> +</td> +</tr> +<tr class="rowColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><strong><a href="../../../../org/apache/poi/util/Units.html#EMU_PER_CENTIMETER">EMU_PER_CENTIMETER</a></strong></code> </td> </tr> +<tr class="altColor"> +<td class="colFirst"><code>static int</code></td> +<td class="colLast"><code><strong><a href="../../../../org/apache/poi/util/Units.html#EMU_PER_CHARACTER">EMU_PER_CHARACTER</a></strong></code> +<div class="block">Column widths are in fractional characters, this is the EMU equivalent.</div> +</td> +</tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><strong><a href="../../../../org/apache/poi/util/Units.html#EMU_PER_PIXEL">EMU_PER_PIXEL</a></strong></code> @@ -188,6 +200,14 @@ extends java.lang.Object</pre> </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> +<td class="colLast"><code><strong><a href="../../../../org/apache/poi/util/Units.html#charactersToEMU(double)">charactersToEMU</a></strong>(double characters)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static int</code></td> +<td class="colLast"><code><strong><a href="../../../../org/apache/poi/util/Units.html#columnWidthToEMU(int)">columnWidthToEMU</a></strong>(int columnWidth)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static int</code></td> <td class="colLast"><code><strong><a href="../../../../org/apache/poi/util/Units.html#doubleToFixedPoint(double)">doubleToFixedPoint</a></strong>(double floatPoint)</code> <div class="block">Converts a value of type floating point to a FixedPoint</div> </td> @@ -232,6 +252,10 @@ extends java.lang.Object</pre> <div class="block">Converts EMUs to points</div> </td> </tr> +<tr class="rowColor"> +<td class="colFirst"><code>static int</code></td> +<td class="colLast"><code><strong><a href="../../../../org/apache/poi/util/Units.html#TwipsToEMU(short)">TwipsToEMU</a></strong>(short twips)</code> </td> +</tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> @@ -313,7 +337,7 @@ extends java.lang.Object</pre> <a name="POINT_DPI"> <!-- --> </a> -<ul class="blockListLast"> +<ul class="blockList"> <li class="blockList"> <h4>POINT_DPI</h4> <pre>public static final int POINT_DPI</pre> @@ -321,6 +345,36 @@ extends java.lang.Object</pre> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#org.apache.poi.util.Units.POINT_DPI">Constant Field Values</a></dd></dl> </li> </ul> +<a name="DEFAULT_CHARACTER_WIDTH"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>DEFAULT_CHARACTER_WIDTH</h4> +<pre>public static final float DEFAULT_CHARACTER_WIDTH</pre> +<div class="block">Width of one "standard character" of the default font in pixels. Same for Calibri and Arial. + "Standard character" defined as the widest digit character in the given font. + Copied from XSSFWorkbook, since that isn't available here. + <p/> + Note this is only valid for workbooks using the default Excel font. + <p/> + Would be nice to eventually support arbitrary document default fonts.</div> +<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#org.apache.poi.util.Units.DEFAULT_CHARACTER_WIDTH">Constant Field Values</a></dd></dl> +</li> +</ul> +<a name="EMU_PER_CHARACTER"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>EMU_PER_CHARACTER</h4> +<pre>public static final int EMU_PER_CHARACTER</pre> +<div class="block">Column widths are in fractional characters, this is the EMU equivalent. + One character is defined as the widest value for the integers 0-9 in the + default font.</div> +<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#org.apache.poi.util.Units.EMU_PER_CHARACTER">Constant Field Values</a></dd></dl> +</li> +</ul> </li> </ul> <!-- ========= CONSTRUCTOR DETAIL ======== --> @@ -436,12 +490,43 @@ extends java.lang.Object</pre> <a name="pixelToPoints(int)"> <!-- --> </a> -<ul class="blockListLast"> +<ul class="blockList"> <li class="blockList"> <h4>pixelToPoints</h4> <pre>public static double pixelToPoints(int pixel)</pre> </li> </ul> +<a name="charactersToEMU(double)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>charactersToEMU</h4> +<pre>public static int charactersToEMU(double characters)</pre> +</li> +</ul> +<a name="columnWidthToEMU(int)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>columnWidthToEMU</h4> +<pre>public static int columnWidthToEMU(int columnWidth)</pre> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>columnWidth</code> - specified in 256ths of a standard character</dd> +<dt><span class="strong">Returns:</span></dt><dd>equivalent EMUs</dd></dl> +</li> +</ul> +<a name="TwipsToEMU(short)"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>TwipsToEMU</h4> +<pre>public static int TwipsToEMU(short twips)</pre> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>twips</code> - (1/20th of a point) typically used for row heights</dd> +<dt><span class="strong">Returns:</span></dt><dd>equivalent EMUs</dd></dl> +</li> +</ul> </li> </ul> </li> Modified: poi/site/publish/apidocs/org/apache/poi/util/class-use/Removal.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/class-use/Removal.html?rev=1799833&r1=1799832&r2=1799833&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/class-use/Removal.html (original) +++ poi/site/publish/apidocs/org/apache/poi/util/class-use/Removal.html Sun Jun 25 19:17:03 2017 @@ -2051,6 +2051,55 @@ HSSF concepts.</div> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/poi/util/Removal.html" title="annotation in org.apache.poi.util">Removal</a> in <a href="../../../../../org/apache/poi/xssf/usermodel/package-summary.html">org.apache.poi.xssf.usermodel</a></h3> +<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> +<caption><span>Fields in <a href="../../../../../org/apache/poi/xssf/usermodel/package-summary.html">org.apache.poi.xssf.usermodel</a> with annotations of type <a href="../../../../../org/apache/poi/util/Removal.html" title="annotation in org.apache.poi.util">Removal</a></span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Field and Description</th> +</tr> +<tbody> +<tr class="altColor"> +<td class="colFirst"><code>static float</code></td> +<td class="colLast"><span class="strong">XSSFWorkbook.</span><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFWorkbook.html#DEFAULT_CHARACTER_WIDTH">DEFAULT_CHARACTER_WIDTH</a></strong></code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>POI 3.17 beta 1</i></div> +</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static int</code></td> +<td class="colLast"><span class="strong">XSSFShape.</span><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#EMU_PER_PIXEL">EMU_PER_PIXEL</a></strong></code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>POI 3.17 beta 1</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static int</code></td> +<td class="colLast"><span class="strong">XSSFShape.</span><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#EMU_PER_POINT">EMU_PER_POINT</a></strong></code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>POI 3.17 beta 1</i></div> +</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static int</code></td> +<td class="colLast"><span class="strong">XSSFShape.</span><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#PIXEL_DPI">PIXEL_DPI</a></strong></code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>POI 3.17 beta 1</i></div> +</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static int</code></td> +<td class="colLast"><span class="strong">XSSFShape.</span><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#POINT_DPI">POINT_DPI</a></strong></code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>POI 3.17 beta 1</i></div> +</div> +</td> +</tr> +</tbody> +</table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../org/apache/poi/xssf/usermodel/package-summary.html">org.apache.poi.xssf.usermodel</a> with annotations of type <a href="../../../../../org/apache/poi/util/Removal.html" title="annotation in org.apache.poi.util">Removal</a></span><span class="tabEnd"> </span></caption> <tr> Added: poi/site/publish/apidocs/org/apache/poi/util/class-use/StaxHelper.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/class-use/StaxHelper.html?rev=1799833&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/class-use/StaxHelper.html (added) +++ poi/site/publish/apidocs/org/apache/poi/util/class-use/StaxHelper.html Sun Jun 25 19:17:03 2017 @@ -0,0 +1,121 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!-- NewPage --> +<html lang="en"> +<head> +<title>Uses of Class org.apache.poi.util.StaxHelper (POI API Documentation)</title> +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> +</head> +<body> +<script type="text/javascript"><!-- + try { + if (location.href.indexOf('is-external=true') == -1) { + parent.document.title="Uses of Class org.apache.poi.util.StaxHelper (POI API Documentation)"; + } + } + catch(err) { + } +//--> +</script> +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<!-- ========= START OF TOP NAVBAR ======= --> +<div class="topNav"><a name="navbar_top"> +<!-- --> +</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../../overview-summary.html">Overview</a></li> +<li><a href="../package-summary.html">Package</a></li> +<li><a href="../../../../../org/apache/poi/util/StaxHelper.html" title="class in org.apache.poi.util">Class</a></li> +<li class="navBarCell1Rev">Use</li> +<li><a href="../package-tree.html">Tree</a></li> +<li><a href="../../../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../../../index-all.html">Index</a></li> +<li><a href="../../../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li>Prev</li> +<li>Next</li> +</ul> +<ul class="navList"> +<li><a href="../../../../../index.html?org/apache/poi/util/class-use/StaxHelper.html" target="_top">Frames</a></li> +<li><a href="StaxHelper.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_top"> +<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_top"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<a name="skip-navbar_top"> +<!-- --> +</a></div> +<!-- ========= END OF TOP NAVBAR ========= --> +<div class="header"> +<h2 title="Uses of Class org.apache.poi.util.StaxHelper" class="title">Uses of Class<br>org.apache.poi.util.StaxHelper</h2> +</div> +<div class="classUseContainer">No usage of org.apache.poi.util.StaxHelper</div> +<!-- ======= START OF BOTTOM NAVBAR ====== --> +<div class="bottomNav"><a name="navbar_bottom"> +<!-- --> +</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../../overview-summary.html">Overview</a></li> +<li><a href="../package-summary.html">Package</a></li> +<li><a href="../../../../../org/apache/poi/util/StaxHelper.html" title="class in org.apache.poi.util">Class</a></li> +<li class="navBarCell1Rev">Use</li> +<li><a href="../package-tree.html">Tree</a></li> +<li><a href="../../../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../../../index-all.html">Index</a></li> +<li><a href="../../../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li>Prev</li> +<li>Next</li> +</ul> +<ul class="navList"> +<li><a href="../../../../../index.html?org/apache/poi/util/class-use/StaxHelper.html" target="_top">Frames</a></li> +<li><a href="StaxHelper.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_bottom"> +<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_bottom"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<a name="skip-navbar_bottom"> +<!-- --> +</a></div> +<!-- ======== END OF BOTTOM NAVBAR ======= --> +<p class="legalCopy"><small> + <i>Copyright 2017 The Apache Software Foundation or + its licensors, as applicable.</i> + </small></p> +</body> +</html> Modified: poi/site/publish/apidocs/org/apache/poi/util/package-frame.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/package-frame.html?rev=1799833&r1=1799832&r2=1799833&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/package-frame.html (original) +++ poi/site/publish/apidocs/org/apache/poi/util/package-frame.html Sun Jun 25 19:17:03 2017 @@ -59,6 +59,7 @@ <li><a href="RLEDecompressingInputStream.html" title="class in org.apache.poi.util" target="classFrame">RLEDecompressingInputStream</a></li> <li><a href="SAXHelper.html" title="class in org.apache.poi.util" target="classFrame">SAXHelper</a></li> <li><a href="ShortField.html" title="class in org.apache.poi.util" target="classFrame">ShortField</a></li> +<li><a href="StaxHelper.html" title="class in org.apache.poi.util" target="classFrame">StaxHelper</a></li> <li><a href="StringUtil.html" title="class in org.apache.poi.util" target="classFrame">StringUtil</a></li> <li><a href="StringUtil.StringsIterator.html" title="class in org.apache.poi.util" target="classFrame">StringUtil.StringsIterator</a></li> <li><a href="SystemOutLogger.html" title="class in org.apache.poi.util" target="classFrame">SystemOutLogger</a></li> Modified: poi/site/publish/apidocs/org/apache/poi/util/package-summary.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/package-summary.html?rev=1799833&r1=1799832&r2=1799833&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/package-summary.html (original) +++ poi/site/publish/apidocs/org/apache/poi/util/package-summary.html Sun Jun 25 19:17:03 2017 @@ -408,18 +408,24 @@ </td> </tr> <tr class="altColor"> +<td class="colFirst"><a href="../../../../org/apache/poi/util/StaxHelper.html" title="class in org.apache.poi.util">StaxHelper</a></td> +<td class="colLast"> +<div class="block">Provides handy methods for working with StAX parsers and readers</div> +</td> +</tr> +<tr class="rowColor"> <td class="colFirst"><a href="../../../../org/apache/poi/util/StringUtil.html" title="class in org.apache.poi.util">StringUtil</a></td> <td class="colLast"> <div class="block">Collection of string handling utilities</div> </td> </tr> -<tr class="rowColor"> +<tr class="altColor"> <td class="colFirst"><a href="../../../../org/apache/poi/util/StringUtil.StringsIterator.html" title="class in org.apache.poi.util">StringUtil.StringsIterator</a></td> <td class="colLast"> <div class="block">An Iterator over an array of Strings.</div> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><a href="../../../../org/apache/poi/util/SystemOutLogger.html" title="class in org.apache.poi.util">SystemOutLogger</a></td> <td class="colLast"> <div class="block">A logger class that strives to make it as easy as possible for @@ -428,29 +434,29 @@ message.</div> </td> </tr> -<tr class="rowColor"> +<tr class="altColor"> <td class="colFirst"><a href="../../../../org/apache/poi/util/TempFile.html" title="class in org.apache.poi.util">TempFile</a></td> <td class="colLast"> <div class="block">Interface for creating temporary files.</div> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><a href="../../../../org/apache/poi/util/TempFile.DefaultTempFileCreationStrategy.html" title="class in org.apache.poi.util">TempFile.DefaultTempFileCreationStrategy</a></td> <td class="colLast">Deprecated <div class="block"><i>POI 3.15 beta 3.</i></div> </td> </tr> -<tr class="rowColor"> +<tr class="altColor"> <td class="colFirst"><a href="../../../../org/apache/poi/util/Units.html" title="class in org.apache.poi.util">Units</a></td> <td class="colLast"> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><a href="../../../../org/apache/poi/util/XMLHelper.html" title="class in org.apache.poi.util">XMLHelper</a></td> <td class="colLast"> <div class="block">Helper methods for working with javax.xml classes.</div> </td> </tr> -<tr class="rowColor"> +<tr class="altColor"> <td class="colFirst"><a href="../../../../org/apache/poi/util/XmlSort.html" title="class in org.apache.poi.util">XmlSort</a></td> <td class="colLast"> </td> </tr> Modified: poi/site/publish/apidocs/org/apache/poi/util/package-tree.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/package-tree.html?rev=1799833&r1=1799832&r2=1799833&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/package-tree.html (original) +++ poi/site/publish/apidocs/org/apache/poi/util/package-tree.html Sun Jun 25 19:17:03 2017 @@ -148,6 +148,7 @@ </li> <li type="circle">org.apache.poi.util.<a href="../../../../org/apache/poi/util/SAXHelper.html" title="class in org.apache.poi.util"><span class="strong">SAXHelper</span></a></li> <li type="circle">org.apache.poi.util.<a href="../../../../org/apache/poi/util/ShortField.html" title="class in org.apache.poi.util"><span class="strong">ShortField</span></a> (implements org.apache.poi.util.<a href="../../../../org/apache/poi/util/FixedField.html" title="interface in org.apache.poi.util">FixedField</a>)</li> +<li type="circle">org.apache.poi.util.<a href="../../../../org/apache/poi/util/StaxHelper.html" title="class in org.apache.poi.util"><span class="strong">StaxHelper</span></a></li> <li type="circle">org.apache.poi.util.<a href="../../../../org/apache/poi/util/StringUtil.html" title="class in org.apache.poi.util"><span class="strong">StringUtil</span></a></li> <li type="circle">org.apache.poi.util.<a href="../../../../org/apache/poi/util/StringUtil.StringsIterator.html" title="class in org.apache.poi.util"><span class="strong">StringUtil.StringsIterator</span></a> (implements java.util.Iterator<E>)</li> <li type="circle">org.apache.poi.util.<a href="../../../../org/apache/poi/util/TempFile.html" title="class in org.apache.poi.util"><span class="strong">TempFile</span></a></li> Modified: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFClientAnchor.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFClientAnchor.html?rev=1799833&r1=1799832&r2=1799833&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFClientAnchor.html (original) +++ poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFClientAnchor.html Sun Jun 25 19:17:03 2017 @@ -107,13 +107,17 @@ </dl> <hr> <br> -<pre>public final class <span class="strong">XSSFClientAnchor</span> +<pre>public class <span class="strong">XSSFClientAnchor</span> extends <a href="../../../../../org/apache/poi/xssf/usermodel/XSSFAnchor.html" title="class in org.apache.poi.xssf.usermodel">XSSFAnchor</a> implements <a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a></pre> -<div class="block">A client anchor is attached to an excel worksheet. It anchors against - top-left and bottom-right cells.</div> -<dl><dt><span class="strong">Author:</span></dt> - <dd>Yegor Kozlov</dd></dl> +<div class="block">A client anchor is attached to an excel worksheet. It anchors against: + <ol> + <li>A fixed position and fixed size + <li>A position relative to a cell (top-left) and a fixed size + <li>A position relative to a cell (top-left) and sized relative to another cell (bottom right) + </ol> + + which method is used is determined by the <a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.AnchorType.html" title="enum in org.apache.poi.ss.usermodel"><code>ClientAnchor.AnchorType</code></a>.</div> </li> </ul> </div> @@ -172,7 +176,7 @@ implements <a href="../../../../../org/a <td class="colFirst"><code>protected </code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#XSSFClientAnchor(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker,%20org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker)">XSSFClientAnchor</a></strong>(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker cell1, org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker cell2)</code> -<div class="block">Create XSSFClientAnchor from existing xml beans</div> +<div class="block">Create XSSFClientAnchor from existing xml beans, sized and positioned relative to a pair of cells.</div> </td> </tr> <tr class="altColor"> @@ -186,7 +190,23 @@ implements <a href="../../../../../org/a int col2, int row2)</code> <div class="block">Creates a new client anchor and sets the top-left and bottom-right - coordinates of the anchor.</div> + coordinates of the anchor by cell references and offsets.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>protected </code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#XSSFClientAnchor(org.apache.poi.xssf.usermodel.XSSFSheet,%20org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker,%20org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D)">XSSFClientAnchor</a></strong>(<a href="../../../../../org/apache/poi/xssf/usermodel/XSSFSheet.html" title="class in org.apache.poi.xssf.usermodel">XSSFSheet</a> sheet, + org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker cell1, + org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)</code> +<div class="block">Create XSSFClientAnchor from existing xml beans, sized and positioned relative to a pair of cells.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>protected </code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#XSSFClientAnchor(org.apache.poi.xssf.usermodel.XSSFSheet,%20org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D,%20org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D)">XSSFClientAnchor</a></strong>(<a href="../../../../../org/apache/poi/xssf/usermodel/XSSFSheet.html" title="class in org.apache.poi.xssf.usermodel">XSSFSheet</a> sheet, + org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D position, + org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)</code> +<div class="block">Create XSSFClientAnchor from existing xml beans, sized and positioned relative to a pair of cells.</div> </td> </tr> </table> @@ -218,13 +238,13 @@ implements <a href="../../../../../org/a <tr class="altColor"> <td class="colFirst"><code>short</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#getCol1()">getCol1</a></strong>()</code> -<div class="block">Returns the column (0 based) of the first cell.</div> +<div class="block">Returns the column (0 based) of the first cell, or -1 if there is no top-left anchor cell.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>short</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#getCol2()">getCol2</a></strong>()</code> -<div class="block">Returns the column (0 based) of the second cell.</div> +<div class="block">Returns the column (0 based) of the second cell, or -1 if there is no bottom-right anchor cell.</div> </td> </tr> <tr class="altColor"> @@ -270,17 +290,25 @@ implements <a href="../../../../../org/a </td> </tr> <tr class="rowColor"> +<td class="colFirst"><code>org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#getPosition()">getPosition</a></strong>()</code> </td> +</tr> +<tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#getRow1()">getRow1</a></strong>()</code> -<div class="block">Returns the row (0 based) of the first cell.</div> +<div class="block">Returns the row (0 based) of the first cell, or -1 if there is no bottom-right anchor cell.</div> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#getRow2()">getRow2</a></strong>()</code> -<div class="block">Returns the row (0 based) of the second cell.</div> +<div class="block">Returns the row (0 based) of the second cell, or -1 if there is no bottom-right anchor cell.</div> </td> </tr> +<tr class="altColor"> +<td class="colFirst"><code>org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#getSize()">getSize</a></strong>()</code> </td> +</tr> <tr class="rowColor"> <td class="colFirst"><code>org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#getTo()">getTo</a></strong>()</code> @@ -367,16 +395,28 @@ implements <a href="../../../../../org/a </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#setPosition(org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D)">setPosition</a></strong>(org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D position)</code> +<div class="block">Sets the top-left absolute position of the object.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#setRow1(int)">setRow1</a></strong>(int row1)</code> <div class="block">Returns the row (0 based) of the first cell.</div> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#setRow2(int)">setRow2</a></strong>(int row2)</code> <div class="block">Returns the row (0 based) of the first cell.</div> </td> </tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#setSize(org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D)">setSize</a></strong>(org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)</code> +<div class="block">Sets the size of the object.</div> +</td> +</tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#setTo(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker)">setTo</a></strong>(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker to)</code> </td> @@ -414,7 +454,8 @@ implements <a href="../../../../../org/a <li class="blockList"> <h4>XSSFClientAnchor</h4> <pre>public XSSFClientAnchor()</pre> -<div class="block">Creates a new client anchor and defaults all the anchor positions to 0.</div> +<div class="block">Creates a new client anchor and defaults all the anchor positions to 0. + Sets the type to <a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.AnchorType.html#MOVE_AND_RESIZE"><code>ClientAnchor.AnchorType.MOVE_AND_RESIZE</code></a> relative to cell range A1:A1.</div> </li> </ul> <a name="XSSFClientAnchor(int, int, int, int, int, int, int, int)"> @@ -432,22 +473,52 @@ implements <a href="../../../../../org/a int col2, int row2)</pre> <div class="block">Creates a new client anchor and sets the top-left and bottom-right - coordinates of the anchor.</div> + coordinates of the anchor by cell references and offsets. + Sets the type to <a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.AnchorType.html#MOVE_AND_RESIZE"><code>ClientAnchor.AnchorType.MOVE_AND_RESIZE</code></a>.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>dx1</code> - the x coordinate within the first cell.</dd><dd><code>dy1</code> - the y coordinate within the first cell.</dd><dd><code>dx2</code> - the x coordinate within the second cell.</dd><dd><code>dy2</code> - the y coordinate within the second cell.</dd><dd><code>col1</code> - the column (0 based) of the first cell.</dd><dd><code>row1</code> - the row (0 based) of the first cell.</dd><dd><code>col2</code> - the column (0 based) of the second cell.</dd><dd><code>row2</code> - the row (0 based) of the second cell.</dd></dl> </li> </ul> <a name="XSSFClientAnchor(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker, org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker)"> <!-- --> </a> -<ul class="blockListLast"> +<ul class="blockList"> <li class="blockList"> <h4>XSSFClientAnchor</h4> <pre>protected XSSFClientAnchor(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker cell1, org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker cell2)</pre> -<div class="block">Create XSSFClientAnchor from existing xml beans</div> +<div class="block">Create XSSFClientAnchor from existing xml beans, sized and positioned relative to a pair of cells. + Sets the type to <a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.AnchorType.html#MOVE_AND_RESIZE"><code>ClientAnchor.AnchorType.MOVE_AND_RESIZE</code></a>.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>cell1</code> - starting anchor point</dd><dd><code>cell2</code> - ending anchor point</dd></dl> </li> </ul> +<a name="XSSFClientAnchor(org.apache.poi.xssf.usermodel.XSSFSheet, org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker, org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>XSSFClientAnchor</h4> +<pre>protected XSSFClientAnchor(<a href="../../../../../org/apache/poi/xssf/usermodel/XSSFSheet.html" title="class in org.apache.poi.xssf.usermodel">XSSFSheet</a> sheet, + org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker cell1, + org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)</pre> +<div class="block">Create XSSFClientAnchor from existing xml beans, sized and positioned relative to a pair of cells. + Sets the type to <a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.AnchorType.html#MOVE_DONT_RESIZE"><code>ClientAnchor.AnchorType.MOVE_DONT_RESIZE</code></a>.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sheet</code> - needed to calculate ending point based on column/row sizes</dd><dd><code>cell1</code> - starting anchor point</dd><dd><code>size</code> - object size, to calculate ending anchor point</dd></dl> +</li> +</ul> +<a name="XSSFClientAnchor(org.apache.poi.xssf.usermodel.XSSFSheet, org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D, org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D)"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>XSSFClientAnchor</h4> +<pre>protected XSSFClientAnchor(<a href="../../../../../org/apache/poi/xssf/usermodel/XSSFSheet.html" title="class in org.apache.poi.xssf.usermodel">XSSFSheet</a> sheet, + org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D position, + org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)</pre> +<div class="block">Create XSSFClientAnchor from existing xml beans, sized and positioned relative to a pair of cells. + Sets the type to <a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.AnchorType.html#DONT_MOVE_AND_RESIZE"><code>ClientAnchor.AnchorType.DONT_MOVE_AND_RESIZE</code></a>.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sheet</code> - needed to calculate starting and ending points based on column/row sizes</dd><dd><code>position</code> - starting absolute position</dd><dd><code>size</code> - object size, to calculate ending position</dd></dl> +</li> +</ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> @@ -464,11 +535,12 @@ implements <a href="../../../../../org/a <h4>getCol1</h4> <pre>public short getCol1()</pre> <div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#getCol1()">ClientAnchor</a></code></strong></div> -<div class="block">Returns the column (0 based) of the first cell.</div> +<div class="block">Returns the column (0 based) of the first cell, or -1 if there is no top-left anchor cell. + This is the case for absolute positioning (AnchorType<a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#DONT_MOVE_AND_RESIZE"><code>ClientAnchor.DONT_MOVE_AND_RESIZE</code></a>).</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#getCol1()">getCol1</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a></code></dd> -<dt><span class="strong">Returns:</span></dt><dd>0-based column of the first cell.</dd></dl> +<dt><span class="strong">Returns:</span></dt><dd>0-based column of the first cell or -1 if none.</dd></dl> </li> </ul> <a name="setCol1(int)"> @@ -483,7 +555,9 @@ implements <a href="../../../../../org/a <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#setCol1(int)">setCol1</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a></code></dd> -<dt><span class="strong">Parameters:</span></dt><dd><code>col1</code> - 0-based column of the first cell.</dd></dl> +<dt><span class="strong">Parameters:</span></dt><dd><code>col1</code> - 0-based column of the first cell.</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code>java.lang.NullPointerException</code> - if cell1 is null (fixed position)</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#setCol1(int)"><code>ClientAnchor.setCol1(int)</code></a></dd></dl> </li> </ul> <a name="getCol2()"> @@ -494,11 +568,13 @@ implements <a href="../../../../../org/a <h4>getCol2</h4> <pre>public short getCol2()</pre> <div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#getCol2()">ClientAnchor</a></code></strong></div> -<div class="block">Returns the column (0 based) of the second cell.</div> +<div class="block">Returns the column (0 based) of the second cell, or -1 if there is no bottom-right anchor cell. + This is the case for absolute positioning (<a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.AnchorType.html#DONT_MOVE_AND_RESIZE"><code>ClientAnchor.AnchorType.DONT_MOVE_AND_RESIZE</code></a>) + and absolute sizing (<a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.AnchorType.html#MOVE_DONT_RESIZE"><code>ClientAnchor.AnchorType.MOVE_DONT_RESIZE</code></a>.</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#getCol2()">getCol2</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a></code></dd> -<dt><span class="strong">Returns:</span></dt><dd>0-based column of the second cell.</dd></dl> +<dt><span class="strong">Returns:</span></dt><dd>0-based column of the second cell or -1 if none.</dd></dl> </li> </ul> <a name="setCol2(int)"> @@ -513,7 +589,9 @@ implements <a href="../../../../../org/a <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#setCol2(int)">setCol2</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a></code></dd> -<dt><span class="strong">Parameters:</span></dt><dd><code>col2</code> - 0-based column of the second cell.</dd></dl> +<dt><span class="strong">Parameters:</span></dt><dd><code>col2</code> - 0-based column of the second cell.</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code>java.lang.NullPointerException</code> - if cell2 is null (fixed size)</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#setCol2(int)"><code>ClientAnchor.setCol2(int)</code></a></dd></dl> </li> </ul> <a name="getRow1()"> @@ -524,11 +602,12 @@ implements <a href="../../../../../org/a <h4>getRow1</h4> <pre>public int getRow1()</pre> <div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#getRow1()">ClientAnchor</a></code></strong></div> -<div class="block">Returns the row (0 based) of the first cell.</div> +<div class="block">Returns the row (0 based) of the first cell, or -1 if there is no bottom-right anchor cell. + This is the case for absolute positioning (<a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.AnchorType.html#DONT_MOVE_AND_RESIZE"><code>ClientAnchor.AnchorType.DONT_MOVE_AND_RESIZE</code></a>).</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#getRow1()">getRow1</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a></code></dd> -<dt><span class="strong">Returns:</span></dt><dd>0-based row of the first cell.</dd></dl> +<dt><span class="strong">Returns:</span></dt><dd>0-based row of the first cell or -1 if none.</dd></dl> </li> </ul> <a name="setRow1(int)"> @@ -543,7 +622,9 @@ implements <a href="../../../../../org/a <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#setRow1(int)">setRow1</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a></code></dd> -<dt><span class="strong">Parameters:</span></dt><dd><code>row1</code> - 0-based row of the first cell.</dd></dl> +<dt><span class="strong">Parameters:</span></dt><dd><code>row1</code> - 0-based row of the first cell.</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code>java.lang.NullPointerException</code> - if cell1 is null (fixed position)</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#setRow1(int)"><code>ClientAnchor.setRow1(int)</code></a></dd></dl> </li> </ul> <a name="getRow2()"> @@ -554,11 +635,13 @@ implements <a href="../../../../../org/a <h4>getRow2</h4> <pre>public int getRow2()</pre> <div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#getRow2()">ClientAnchor</a></code></strong></div> -<div class="block">Returns the row (0 based) of the second cell.</div> +<div class="block">Returns the row (0 based) of the second cell, or -1 if there is no bottom-right anchor cell. + This is the case for absolute positioning (<a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.AnchorType.html#DONT_MOVE_AND_RESIZE"><code>ClientAnchor.AnchorType.DONT_MOVE_AND_RESIZE</code></a>) + and absolute sizing (<a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.AnchorType.html#MOVE_DONT_RESIZE"><code>ClientAnchor.AnchorType.MOVE_DONT_RESIZE</code></a>.</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#getRow2()">getRow2</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a></code></dd> -<dt><span class="strong">Returns:</span></dt><dd>0-based row of the second cell.</dd></dl> +<dt><span class="strong">Returns:</span></dt><dd>0-based row of the second cell or -1 if none.</dd></dl> </li> </ul> <a name="setRow2(int)"> @@ -573,7 +656,9 @@ implements <a href="../../../../../org/a <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#setRow2(int)">setRow2</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a></code></dd> -<dt><span class="strong">Parameters:</span></dt><dd><code>row2</code> - 0-based row of the first cell.</dd></dl> +<dt><span class="strong">Parameters:</span></dt><dd><code>row2</code> - 0-based row of the first cell.</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code>java.lang.NullPointerException</code> - if cell2 is null (fixed size)</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#setRow2(int)"><code>ClientAnchor.setRow2(int)</code></a></dd></dl> </li> </ul> <a name="getDx1()"> @@ -615,7 +700,9 @@ implements <a href="../../../../../org/a <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ChildAnchor.html#setDx1(int)">setDx1</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ChildAnchor.html" title="interface in org.apache.poi.ss.usermodel">ChildAnchor</a></code></dd> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#setDx1(int)">setDx1</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a></code></dd> -<dt><span class="strong">Parameters:</span></dt><dd><code>dx1</code> - the x coordinate within the first cell</dd></dl> +<dt><span class="strong">Parameters:</span></dt><dd><code>dx1</code> - the x coordinate within the first cell</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code>java.lang.NullPointerException</code> - if cell1 is null (fixed position)</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/poi/ss/usermodel/ChildAnchor.html#setDx1(int)"><code>ChildAnchor.setDx1(int)</code></a></dd></dl> </li> </ul> <a name="getDy1()"> @@ -657,7 +744,9 @@ implements <a href="../../../../../org/a <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ChildAnchor.html#setDy1(int)">setDy1</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ChildAnchor.html" title="interface in org.apache.poi.ss.usermodel">ChildAnchor</a></code></dd> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#setDy1(int)">setDy1</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a></code></dd> -<dt><span class="strong">Parameters:</span></dt><dd><code>dy1</code> - the y coordinate within the first cell</dd></dl> +<dt><span class="strong">Parameters:</span></dt><dd><code>dy1</code> - the y coordinate within the first cell</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code>java.lang.NullPointerException</code> - if cell1 is null (fixed position)</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/poi/ss/usermodel/ChildAnchor.html#setDy1(int)"><code>ChildAnchor.setDy1(int)</code></a></dd></dl> </li> </ul> <a name="getDy2()"> @@ -699,7 +788,9 @@ implements <a href="../../../../../org/a <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ChildAnchor.html#setDy2(int)">setDy2</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ChildAnchor.html" title="interface in org.apache.poi.ss.usermodel">ChildAnchor</a></code></dd> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#setDy2(int)">setDy2</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a></code></dd> -<dt><span class="strong">Parameters:</span></dt><dd><code>dy2</code> - the y coordinate within the second cell</dd></dl> +<dt><span class="strong">Parameters:</span></dt><dd><code>dy2</code> - the y coordinate within the second cell</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code>java.lang.NullPointerException</code> - if cell2 is null (fixed size)</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/poi/ss/usermodel/ChildAnchor.html#setDy2(int)"><code>ChildAnchor.setDy2(int)</code></a></dd></dl> </li> </ul> <a name="getDx2()"> @@ -741,7 +832,9 @@ implements <a href="../../../../../org/a <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ChildAnchor.html#setDx2(int)">setDx2</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ChildAnchor.html" title="interface in org.apache.poi.ss.usermodel">ChildAnchor</a></code></dd> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html#setDx2(int)">setDx2</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a></code></dd> -<dt><span class="strong">Parameters:</span></dt><dd><code>dx2</code> - the x coordinate within the second cell</dd></dl> +<dt><span class="strong">Parameters:</span></dt><dd><code>dx2</code> - the x coordinate within the second cell</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code>java.lang.NullPointerException</code> - if cell2 is null (fixed size)</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/poi/ss/usermodel/ChildAnchor.html#setDx2(int)"><code>ChildAnchor.setDx2(int)</code></a></dd></dl> </li> </ul> <a name="equals(java.lang.Object)"> @@ -825,6 +918,52 @@ public org.openxmlformats.schemas.d <pre>protected void setTo(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker to)</pre> </li> </ul> +<a name="getPosition()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>getPosition</h4> +<pre>public org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D getPosition()</pre> +<dl><dt><span class="strong">Returns:</span></dt><dd>absolute top-left position, or null if position is determined from the "from" cell</dd><dt><span class="strong">Since:</span></dt> + <dd>POI 3.17 beta 1</dd></dl> +</li> +</ul> +<a name="setPosition(org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setPosition</h4> +<pre>public void setPosition(org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D position)</pre> +<div class="block">Sets the top-left absolute position of the object. To use this, "from" must be set to null.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>position</code> - </dd><dt><span class="strong">Since:</span></dt> + <dd>POI 3.17 beta 1</dd></dl> +</li> +</ul> +<a name="getSize()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>getSize</h4> +<pre>public org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D getSize()</pre> +<dl><dt><span class="strong">Returns:</span></dt><dd>size or null, if size is determined from the to and from cells</dd><dt><span class="strong">Since:</span></dt> + <dd>POI 3.17 beta 1</dd></dl> +</li> +</ul> +<a name="setSize(org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setSize</h4> +<pre>public void setSize(org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)</pre> +<div class="block">Sets the size of the object. To use this, "to" must be set to null.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>size</code> - </dd><dt><span class="strong">Since:</span></dt> + <dd>POI 3.17 beta 1</dd></dl> +</li> +</ul> <a name="setAnchorType(org.apache.poi.ss.usermodel.ClientAnchor.AnchorType)"> <!-- --> </a> Modified: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFGraphicFrame.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFGraphicFrame.html?rev=1799833&r1=1799832&r2=1799833&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFGraphicFrame.html (original) +++ poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFGraphicFrame.html Sun Jun 25 19:17:03 2017 @@ -129,7 +129,7 @@ extends <a href="../../../../../org/apac <!-- --> </a> <h3>Fields inherited from class org.apache.poi.xssf.usermodel.<a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html" title="class in org.apache.poi.xssf.usermodel">XSSFShape</a></h3> -<code><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#drawing">drawing</a>, <a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#EMU_PER_PIXEL">EMU_PER_PIXEL</a>, <a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#EMU_PER_POINT">EMU_PER_POINT</a>, <a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#parent">parent</a>, <a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#PIXEL_DPI">PIXEL_DPI</a>, <a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#POINT_DPI">POINT_DPI</a></code></li> +<code><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#anchor">anchor</a>, <a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#drawing">drawing</a>, <a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#EMU_PER_PIXEL">EMU_PER_PIXEL</a>, <a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#EMU_PER_POINT">EMU_PER_POINT</a>, <a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#parent">parent</a>, <a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#PIXEL_DPI">PIXEL_DPI</a>, <a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#POINT_DPI">POINT_DPI</a></code></li> </ul> </li> </ul> @@ -359,7 +359,7 @@ public org.openxmlformats.schemas.d <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/Shape.html#getAnchor()">getAnchor</a></code> in interface <code><a href="../../../../../org/apache/poi/ss/usermodel/Shape.html" title="interface in org.apache.poi.ss.usermodel">Shape</a></code></dd> <dt><strong>Overrides:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#getAnchor()">getAnchor</a></code> in class <code><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html" title="class in org.apache.poi.xssf.usermodel">XSSFShape</a></code></dd> -<dt><span class="strong">Returns:</span></dt><dd>the anchor this frame is attached to</dd></dl> +<dt><span class="strong">Returns:</span></dt><dd>the XSSFClientAnchor anchor this frame is attached to</dd></dl> </li> </ul> <a name="setChart(org.apache.poi.xssf.usermodel.XSSFChart, java.lang.String)"> Modified: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFShape.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFShape.html?rev=1799833&r1=1799832&r2=1799833&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFShape.html (original) +++ poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFShape.html Sun Jun 25 19:17:03 2017 @@ -142,11 +142,19 @@ implements <a href="../../../../../org/a </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> -<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#EMU_PER_PIXEL">EMU_PER_PIXEL</a></strong></code> </td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#EMU_PER_PIXEL">EMU_PER_PIXEL</a></strong></code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>POI 3.17 beta 1</i></div> +</div> +</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> -<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#EMU_PER_POINT">EMU_PER_POINT</a></strong></code> </td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#EMU_PER_POINT">EMU_PER_POINT</a></strong></code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>POI 3.17 beta 1</i></div> +</div> +</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShapeGroup.html" title="class in org.apache.poi.xssf.usermodel">XSSFShapeGroup</a></code></td> @@ -156,11 +164,19 @@ implements <a href="../../../../../org/a </tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> -<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#PIXEL_DPI">PIXEL_DPI</a></strong></code> </td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#PIXEL_DPI">PIXEL_DPI</a></strong></code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>POI 3.17 beta 1</i></div> +</div> +</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> -<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#POINT_DPI">POINT_DPI</a></strong></code> </td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFShape.html#POINT_DPI">POINT_DPI</a></strong></code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>POI 3.17 beta 1</i></div> +</div> +</td> </tr> </table> </li> @@ -289,8 +305,11 @@ implements <a href="../../../../../org/a <ul class="blockList"> <li class="blockList"> <h4>EMU_PER_PIXEL</h4> -<pre>public static final int EMU_PER_PIXEL</pre> -<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.poi.xssf.usermodel.XSSFShape.EMU_PER_PIXEL">Constant Field Values</a></dd></dl> +<pre><a href="../../../../../org/apache/poi/util/Removal.html" title="annotation in org.apache.poi.util">@Removal</a>(<a href="../../../../../org/apache/poi/util/Removal.html#version()">version</a>="3.19") +public static final int EMU_PER_PIXEL</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>POI 3.17 beta 1</i></div> +<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/poi/util/Units.html#EMU_PER_PIXEL"><code>Units.EMU_PER_PIXEL</code></a>, +<a href="../../../../../constant-values.html#org.apache.poi.xssf.usermodel.XSSFShape.EMU_PER_PIXEL">Constant Field Values</a></dd></dl> </li> </ul> <a name="EMU_PER_POINT"> @@ -299,8 +318,11 @@ implements <a href="../../../../../org/a <ul class="blockList"> <li class="blockList"> <h4>EMU_PER_POINT</h4> -<pre>public static final int EMU_PER_POINT</pre> -<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.poi.xssf.usermodel.XSSFShape.EMU_PER_POINT">Constant Field Values</a></dd></dl> +<pre><a href="../../../../../org/apache/poi/util/Removal.html" title="annotation in org.apache.poi.util">@Removal</a>(<a href="../../../../../org/apache/poi/util/Removal.html#version()">version</a>="3.19") +public static final int EMU_PER_POINT</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>POI 3.17 beta 1</i></div> +<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/poi/util/Units.html#EMU_PER_POINT"><code>Units.EMU_PER_POINT</code></a>, +<a href="../../../../../constant-values.html#org.apache.poi.xssf.usermodel.XSSFShape.EMU_PER_POINT">Constant Field Values</a></dd></dl> </li> </ul> <a name="POINT_DPI"> @@ -309,8 +331,11 @@ implements <a href="../../../../../org/a <ul class="blockList"> <li class="blockList"> <h4>POINT_DPI</h4> -<pre>public static final int POINT_DPI</pre> -<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.poi.xssf.usermodel.XSSFShape.POINT_DPI">Constant Field Values</a></dd></dl> +<pre><a href="../../../../../org/apache/poi/util/Removal.html" title="annotation in org.apache.poi.util">@Removal</a>(<a href="../../../../../org/apache/poi/util/Removal.html#version()">version</a>="3.19") +public static final int POINT_DPI</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>POI 3.17 beta 1</i></div> +<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/poi/util/Units.html#POINT_DPI"><code>Units.POINT_DPI</code></a>, +<a href="../../../../../constant-values.html#org.apache.poi.xssf.usermodel.XSSFShape.POINT_DPI">Constant Field Values</a></dd></dl> </li> </ul> <a name="PIXEL_DPI"> @@ -319,8 +344,11 @@ implements <a href="../../../../../org/a <ul class="blockList"> <li class="blockList"> <h4>PIXEL_DPI</h4> -<pre>public static final int PIXEL_DPI</pre> -<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.poi.xssf.usermodel.XSSFShape.PIXEL_DPI">Constant Field Values</a></dd></dl> +<pre><a href="../../../../../org/apache/poi/util/Removal.html" title="annotation in org.apache.poi.util">@Removal</a>(<a href="../../../../../org/apache/poi/util/Removal.html#version()">version</a>="3.19") +public static final int PIXEL_DPI</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>POI 3.17 beta 1</i></div> +<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/poi/util/Units.html#PIXEL_DPI"><code>Units.PIXEL_DPI</code></a>, +<a href="../../../../../constant-values.html#org.apache.poi.xssf.usermodel.XSSFShape.PIXEL_DPI">Constant Field Values</a></dd></dl> </li> </ul> <a name="drawing"> Modified: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFWorkbook.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFWorkbook.html?rev=1799833&r1=1799832&r2=1799833&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFWorkbook.html (original) +++ poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/XSSFWorkbook.html Sun Jun 25 19:17:03 2017 @@ -154,7 +154,9 @@ implements <a href="../../../../../org/a <tr class="altColor"> <td class="colFirst"><code>static float</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/xssf/usermodel/XSSFWorkbook.html#DEFAULT_CHARACTER_WIDTH">DEFAULT_CHARACTER_WIDTH</a></strong></code> -<div class="block">Width of one character of the default font in pixels.</div> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>POI 3.17 beta 1</i></div> +</div> </td> </tr> <tr class="rowColor"> @@ -978,9 +980,12 @@ implements <a href="../../../../../org/a <ul class="blockList"> <li class="blockList"> <h4>DEFAULT_CHARACTER_WIDTH</h4> -<pre>public static final float DEFAULT_CHARACTER_WIDTH</pre> +<pre><a href="../../../../../org/apache/poi/util/Removal.html" title="annotation in org.apache.poi.util">@Removal</a>(<a href="../../../../../org/apache/poi/util/Removal.html#version()">version</a>="3.19") +public static final float DEFAULT_CHARACTER_WIDTH</pre> +<div class="block"><span class="strong">Deprecated.</span> <i>POI 3.17 beta 1</i></div> <div class="block">Width of one character of the default font in pixels. Same for Calibry and Arial.</div> -<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.poi.xssf.usermodel.XSSFWorkbook.DEFAULT_CHARACTER_WIDTH">Constant Field Values</a></dd></dl> +<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../org/apache/poi/util/Units.html#DEFAULT_CHARACTER_WIDTH"><code>Units.DEFAULT_CHARACTER_WIDTH</code></a>, +<a href="../../../../../constant-values.html#org.apache.poi.xssf.usermodel.XSSFWorkbook.DEFAULT_CHARACTER_WIDTH">Constant Field Values</a></dd></dl> </li> </ul> <a name="PICTURE_TYPE_GIF"> Modified: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/class-use/XSSFSheet.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/class-use/XSSFSheet.html?rev=1799833&r1=1799832&r2=1799833&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/class-use/XSSFSheet.html (original) +++ poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/class-use/XSSFSheet.html Sun Jun 25 19:17:03 2017 @@ -299,6 +299,20 @@ </tr> <tbody> <tr class="altColor"> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#XSSFClientAnchor(org.apache.poi.xssf.usermodel.XSSFSheet,%20org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker,%20org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D)">XSSFClientAnchor</a></strong>(<a href="../../../../../../org/apache/poi/xssf/usermodel/XSSFSheet.html" title="class in org.apache.poi.xssf.usermodel">XSSFSheet</a> sheet, + org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker cell1, + org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)</code> +<div class="block">Create XSSFClientAnchor from existing xml beans, sized and positioned relative to a pair of cells.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/xssf/usermodel/XSSFClientAnchor.html#XSSFClientAnchor(org.apache.poi.xssf.usermodel.XSSFSheet,%20org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D,%20org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D)">XSSFClientAnchor</a></strong>(<a href="../../../../../../org/apache/poi/xssf/usermodel/XSSFSheet.html" title="class in org.apache.poi.xssf.usermodel">XSSFSheet</a> sheet, + org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D position, + org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)</code> +<div class="block">Create XSSFClientAnchor from existing xml beans, sized and positioned relative to a pair of cells.</div> +</td> +</tr> +<tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/xssf/usermodel/XSSFDataValidationHelper.html#XSSFDataValidationHelper(org.apache.poi.xssf.usermodel.XSSFSheet)">XSSFDataValidationHelper</a></strong>(<a href="../../../../../../org/apache/poi/xssf/usermodel/XSSFSheet.html" title="class in org.apache.poi.xssf.usermodel">XSSFSheet</a> xssfSheet)</code> </td> </tr> <tr class="rowColor"> Modified: poi/site/publish/apidocs/overview-tree.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/overview-tree.html?rev=1799833&r1=1799832&r2=1799833&view=diff ============================================================================== --- poi/site/publish/apidocs/overview-tree.html (original) +++ poi/site/publish/apidocs/overview-tree.html Sun Jun 25 19:17:03 2017 @@ -2482,6 +2482,7 @@ <li type="circle">org.apache.poi.hwpf.sprm.<a href="org/apache/poi/hwpf/sprm/SprmUtils.html" title="class in org.apache.poi.hwpf.sprm"><span class="strong">SprmUtils</span></a></li> <li type="circle">org.apache.poi.ss.util.<a href="org/apache/poi/ss/util/SSCellRange.html" title="class in org.apache.poi.ss.util"><span class="strong">SSCellRange</span></a><K> (implements org.apache.poi.ss.usermodel.<a href="org/apache/poi/ss/usermodel/CellRange.html" title="interface in org.apache.poi.ss.usermodel">CellRange</a><C>)</li> <li type="circle">org.apache.poi.poifs.crypt.standard.<a href="org/apache/poi/poifs/crypt/standard/StandardEncryptionInfoBuilder.html" title="class in org.apache.poi.poifs.crypt.standard"><span class="strong">StandardEncryptionInfoBuilder</span></a> (implements org.apache.poi.poifs.crypt.<a href="org/apache/poi/poifs/crypt/EncryptionInfoBuilder.html" title="interface in org.apache.poi.poifs.crypt">EncryptionInfoBuilder</a>)</li> +<li type="circle">org.apache.poi.util.<a href="org/apache/poi/util/StaxHelper.html" title="class in org.apache.poi.util"><span class="strong">StaxHelper</span></a></li> <li type="circle">org.apache.poi.hwpf.model.types.<a href="org/apache/poi/hwpf/model/types/StdfBaseAbstractType.html" title="class in org.apache.poi.hwpf.model.types"><span class="strong">StdfBaseAbstractType</span></a></li> <li type="circle">org.apache.poi.hwpf.model.types.<a href="org/apache/poi/hwpf/model/types/StdfPost2000AbstractType.html" title="class in org.apache.poi.hwpf.model.types"><span class="strong">StdfPost2000AbstractType</span></a></li> <li type="circle">org.apache.poi.hdgf.streams.<a href="org/apache/poi/hdgf/streams/Stream.html" title="class in org.apache.poi.hdgf.streams"><span class="strong">Stream</span></a> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
