* Appends a new hyperlink run to this paragraph
*
* @return a new hyperlink run
+ * @since POI 4.1.1
*/
public XWPFHyperlinkRun createHyperlinkRun(String uri) {
// Create a relationship ID for this link.
}
/**
- * Returns the width of the picture (in points).
+ * Returns the width of the picture (in points).
+ *
+ * @since POI 4.1.1
*/
public double getWidth() {
return Units.toPoints(ctPic.getSpPr().getXfrm().getExt().getCx());
/**
* Returns the depth of the picture (in points).
+ *
+ * @since POI 4.1.1
*/
public double getDepth() {
return Units.toPoints(ctPic.getSpPr().getXfrm().getExt().getCy());
* Set the style ID for the run.
*
* @param styleId ID (not name) of the style to set for the run, e.g. "BoldItalic" (not "Bold Italic").
+ * @since POI 4.1.1
*/
public void setStyle(String styleId) {
CTRPr pr = getCTR().getRPr();