Package com.grapecity.documents.excel
Interface IShrinkToFitSettings
public interface IShrinkToFitSettings
Represents the shrink to fit settings of this workbook.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanGets whether can shrink to fit the wrapped text.Gets the ommitted string.doubleGets the minimum size of font when performing shrink to fit.voidsetCanShrinkToFitWrappedText(boolean value) Sets whether can shrink to fit the wrapped text.voidsetEllipsis(String value) Sets the ommitted string.voidsetMinimumFont(double value) Sets the minimum size of font when performing shrink to fit.
-
Method Details
-
getCanShrinkToFitWrappedText
boolean getCanShrinkToFitWrappedText()Gets whether can shrink to fit the wrapped text. -
setCanShrinkToFitWrappedText
void setCanShrinkToFitWrappedText(boolean value) Sets whether can shrink to fit the wrapped text. -
getMinimumFont
double getMinimumFont()Gets the minimum size of font when performing shrink to fit. -
setMinimumFont
void setMinimumFont(double value) Sets the minimum size of font when performing shrink to fit. -
getEllipsis
String getEllipsis()Gets the ommitted string. The default value is "...". -
setEllipsis
Sets the ommitted string.
-