@evidential-fortune-sheet/fortune-excel
Version:
An Excel import/export import library for FortuneSheet
26 lines (25 loc) • 951 B
TypeScript
import { IfortuneSheetborderInfoCellForImp } from "./IFortune";
import { ReadXml, Element, IStyleCollections } from "./ReadXml";
import { FortuneSheetCelldataBase } from "./FortuneBase";
export declare class FortuneSheetCelldata extends FortuneSheetCelldataBase {
_borderObject: IfortuneSheetborderInfoCellForImp;
_fomulaRef: string;
_formulaSi: string;
_formulaType: string;
private sheetFile;
private readXml;
private cell;
private styles;
private sharedStrings;
private mergeCells;
constructor(cell: Element, styles: IStyleCollections, sharedStrings: Element[], mergeCells: Element[], sheetFile: string, ReadXml: ReadXml);
/**
* @param s Style index ,start 1
* @param t Cell type, Optional value is ST_CellType, it's found at constat.ts
*/
private generateValue;
private replaceSpecialWrap;
private getBackgroundByFill;
private getBorderInfo;
private htmlDecode;
}