Methods Summary |
---|
public int | getMarginBottom()Gets the bottom margin within the textbox.
return marginBottom;
|
public int | getMarginLeft()
return marginLeft;
|
public int | getMarginRight()
return marginRight;
|
public int | getMarginTop()
return marginTop;
|
public org.apache.poi.hssf.usermodel.HSSFRichTextString | getString()
return string;
|
public void | setMarginBottom(int marginBottom)Sets the bottom margin within the textbox.
this.marginBottom = marginBottom;
|
public void | setMarginLeft(int marginLeft)Sets the left margin within the textbox.
this.marginLeft = marginLeft;
|
public void | setMarginRight(int marginRight)Sets the right margin within the textbox.
this.marginRight = marginRight;
|
public void | setMarginTop(int marginTop)Sets the top margin within the textbox.
this.marginTop = marginTop;
|
public void | setString(org.apache.poi.hssf.usermodel.HSSFRichTextString string)
this.string = string;
|