Dear support
I’m trying to use the Cells 8.7.1 , to convert an Excel sheet to Html page.
I find whatever I adjust the width of column , the width in final html page is not changed, it always keep the same space.
Please refer the attachment and code
public class Excel2Html {
public static void main(String[] args) throws Exception{
// TODO Auto-generated method stub
Workbook wb = new Workbook(“C:\0\aspose.xlsx”);
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
options.setExportActiveWorksheetOnly(true);
options.setHtmlCrossStringType(HtmlCrossType.FIT_TO_CELL);
options.setPresentationPreference(true);
wb.save(“C:\0\aspose.html”, options);
}
}
I’m a new user to the Cells , is there some way to control the width of column in the product ?