我一直在尝试使用灯光开关在Excel中创建边框。我创建文档没有问题,我能够格式化文档,但我想要。然而,当将excel边框放在excel上时,我似乎无法正确使用
**Imports System.Runtime.InteropServices.Automation
Imports System.Collections.Specialized**
**With excel.Range("A5:M6")
.Borders(excel.XlBordersIndex.xlInsideVertical).LineStyle = excel.XlLineStyle.xlContinuous
End With**
有我使用的代码,上面是代码,因为我说eveything很好地禁止创建边框。系统不喜欢XlBordersIndex“调用XlBordersIndex时出错 - 找不到成员”。有什么我需要重申我已经相当一段时间谷歌了,并找不到微软Light Switch的任何东西
答案 0 :(得分:1)
看起来excel
是变量的名称 - Application
,Worksheet
或其他具有Range
属性的内容 - 与Excel
命名空间。也许尝试下列之一:
excel
变量重命名为其他内容XlBordersIndex
引用Excel
枚举(使用大写字母E)。System.Runtime.InteropServices.Automation.Excel.XlBordersIndex.xlInsideVertical