将报表导出到灯光开关并尝试在Excel中创建边框

时间:2012-12-17 07:32:51

标签: excel vb.net-2010 visual-studio-lightswitch

我一直在尝试使用灯光开关在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的任何东西

1 个答案:

答案 0 :(得分:1)

看起来excel是变量的名称 - ApplicationWorksheet或其他具有Range属性的内容 - 与Excel命名空间。也许尝试下列之一:

  • excel变量重命名为其他内容
  • 通过XlBordersIndex引用Excel枚举(使用大写字母E)。
  • 通过完整命名空间引用枚举:System.Runtime.InteropServices.Automation.Excel.XlBordersIndex.xlInsideVertical