创建表格时,如何使用Office js从Excel中删除表格样式?在VSTO中,我们可以执行以下操作。
Excel.ListObject listObj = CreateTable(); //method to create table using VSTO
listObj.TableStyle = ''; //this will clear the table style.
我无法在Office js中做到这一点,因为tablestyle始终接受某些参数,并且不为空。如果有清除表格样式的方法,请告诉我。