我想从一个列表对象中提取数字格式并将其应用于 VSTO 中的另一个列表对象。
我尝试使用该方法:
for(int i=1 ;i<=sourceListObject.listcolumns.count;i++)
{
listobject1.listcolumns.item[i].range.numberformat = sourceListObject.listcolumns.item[i].range.numberformat
}
但这不起作用..因为数字格式没有应用于listobject1。