如上图所示,后台设置的宽度(事实后台设置过宽度),感觉完全没有,但是安卓手机打开确实正常的,pc也是正常的
下面是设置宽度代码:
table_base.AutoFitBehavior(WdAutoFitBehavior.wdAutoFitContent);//根据内容自动调整表格
table_base.AutoFitBehavior(WdAutoFitBehavior.wdAutoFitWindow); //根据窗口自动调整表格
table_base.Columns[1].SetWidth(80f,WdRulerStyle.wdAdjustProportional);
table_base.Columns[3].SetWidth(80f, WdRulerStyle.wdAdjustProportional);
table_base.Columns[2].SetWidth(134f, WdRulerStyle.wdAdjustProportional);
table_base.Columns[4].SetWidth(134f, WdRulerStyle.wdAdjustProportional);
//设置表格样式
table_base.Borders.OutsideLineStyle = Microsoft.Office.Interop.Word.WdLineStyle.wdLineStyleThickThinLargeGap;
table_base.Borders.InsideLineStyle = Microsoft.Office.Interop.Word.WdLineStyle.wdLineStyleSingle;
table_base.Columns[1].Width = 100f;
table_base.Columns[2].Width = 220f;
table_base.Columns[3].Width = 105f;
不行,这种做法我试过,iphone微信打开,表格的宽度还是没有固定。