我在 excel 中录制了一个宏,以向 excel 单元格添加模式。以下是我得到的,但是当我尝试在 VB.NET 中实现此代码时,它不接受它。我对 VB.NET 的理解 = 初级/中级
oSt2.Cells(20,i).Select()
oSt2.Cells(21,i).Select()
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent1
.TintAndShade = 0.599963377788629
.PatternTintAndShade = 0
End With
我在这里错过了什么吗?
谢谢