* and the bottom of the inscribed rectangle of the shape that contains the text.
*
* @return the bottom inset in points
*/
public double getBottomInset(){
CTTextBodyProperties bodyPr = ctShape.getTxBody().getBodyPr();
if (bodyPr != null) {
if(bodyPr.isSetBIns()){
return Units.toPoints(bodyPr.getBIns());
}
}
// If this attribute is omitted, then a value of 0.05 inches is implied
return 3.6;
}