Forum Discussion
NisHera
10 years agoValued Contributor
Seeing "VLCObject " I assume that you are testing a Dev Express grid...
In Dev Express grid, there is a property something like Aliases......TcxGridSite.GridView.VisibleColumnCount
you can use that in your test
you can get column name using Aliases......TcxGridSite.GridView.VisibleColumns(i).VisibleCaption
where i is column number
so get number of visible column to a variable x
loop through 0 to x comparing visible caption to your caption "DontCareAbout"
if found, column is visible else not visible