AutoFitterOptions
AutoFitterOptions class
Represents all auto fitter options.
class AutoFitterOptions;
Constructors
Name | Description |
---|---|
constructor() | Default Constructor. |
Properties
Property | Type | Description |
---|---|---|
defaultEditLanguage | DefaultEditLanguage | Gets or sets default edit language. |
autoFitMergedCellsType | AutoFitMergedCellsType | Gets and set the type of auto fitting row height of merged cells. |
onlyAuto | boolean | Indicates whether only fit the rows which height are not customed. |
ignoreHidden | boolean | Ignores the hidden rows/columns. |
maxRowHeight | number | Gets and sets the max row height(in unit of Point) when autofitting rows. |
autoFitWrappedTextType | AutoFitWrappedTextType | Gets and sets the type of auto fitting wrapped text. |
formatStrategy | CellValueFormatStrategy | Gets and sets the formatted strategy. |
forRendering | boolean | Indicates whether fit for rendering purpose. |
constructor()
Default Constructor.
constructor();
defaultEditLanguage
Gets or sets default edit language.
defaultEditLanguage : DefaultEditLanguage;
Remarks
It may display/render different layouts for text paragraph when different edit languages is set. Default is Aspose.Cells.DefaultEditLanguage.Auto.
autoFitMergedCellsType
Gets and set the type of auto fitting row height of merged cells.
autoFitMergedCellsType : AutoFitMergedCellsType;
Remarks
Excel defaults to ignore merged cells when fitting the row height, so Aspose.Cells works as MS Excel default. Please set this type to change the way of auto fitting row height of merged cells.
onlyAuto
Indicates whether only fit the rows which height are not customed.
onlyAuto : boolean;
ignoreHidden
Ignores the hidden rows/columns.
ignoreHidden : boolean;
maxRowHeight
Gets and sets the max row height(in unit of Point) when autofitting rows.
maxRowHeight : number;
autoFitWrappedTextType
Gets and sets the type of auto fitting wrapped text.
autoFitWrappedTextType : AutoFitWrappedTextType;
formatStrategy
Gets and sets the formatted strategy.
formatStrategy : CellValueFormatStrategy;
Remarks
The default value is CellStyle for performance.
forRendering
Indicates whether fit for rendering purpose.
forRendering : boolean;