假设我想做这样的事情:
With grid.Columns("Reviewed")
CType(<the with object>, DataGridViewCheckBoxColumn).ThreeState = False
...
End With
基本上,我希望在上述声明中具有以下等效项:
CType(grid.Columns("Reviewed"), DataGridViewCheckBoxColumn).ThreeState = False
是否有一些关键字可以用来指代我“WITH”的对象?