Hello Al,
You can traverse the Columns collection of the grid and check their Display and Visible properties:
Hope this helps.
Regards,
Konstantin Dikov
Telerik by Progress
You can traverse the Columns collection of the grid and check their Display and Visible properties:
List<GridColumn> columns =
new
List<GridColumn>();
foreach
(GridColumn column
in
RadGrid1.MasterTableView.RenderColumns)
{
if
(column.Display ==
true
&& column.Visible)
{
columns.Add(column);
}
}
Hope this helps.
Regards,
Konstantin Dikov
Telerik by Progress
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.