Copy to clipboard from grid in code

You can actually control the grid columns themselves after the fact.

UltraGridColumn column1 = grdProjectSearch.DisplayLayout.Bands[0].Columns[“Column_Name”];
column1.Header.Hidden = true.

that might not be 100% but close.

1 Like