Hi there,
I am using UltraWinGrid 6.3. I want the selected cell border like excel. In excel when I select cells then all cells are having one common bold border. Which is indicating the select cells area. I want in grid same behavior when I select the cells then all selected cells should have bold border around all. But when I select the cells in grid the active cell color is different the selected cells.
I need border like this when I select the cells in grid.
Hi,
It hasn't been announced yet, but this will be a feature in NetAdvantage 2009 Vol. 2 which is due out later this year.
I have got the latest 2009 v2. Is the feature is available now and how to use it? Thanks.
Hi, You can use these settings in order to set the border appearance.this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance.BorderColor = Color.RoyalBlue;this.ultraGrid1.DisplayLayout.Override.ActiveCellBorderThickness = 4;You can find more details here:http://help.infragistics.com/Help/NetAdvantage/WinForms/2009.2/CLR2.0/html/WinGrid_Set_Active_Cell_Border_Thickness.htmlAnd also about in “What’s new” section :http://help.infragistics.com/Help/NetAdvantage/WinForms/2009.2/CLR2.0/html/Win_Whats_New_2009.2_WinGrid.htmlI hope this helps.Sincerely,DimiDeveloper Support EngineerInfragistics, Inc.
This code is only supposed to affect the active cell. That's why all the properties start with "ActiveCell" :)
For Selected cells, you can use:
this.ultraGrid1.DisplayLayout.SelectionOverlayBorderColor = Color.RoyalBlue;this.ultraGrid1.DisplayLayout.SelectionOverlayBorderThickness = 4;this.ultraGrid1.DisplayLayout.SelectionOverlayColor = SystemColors.Highlight;
Hello,
When using your code lines:
this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance.BorderColor = Color.RoyalBlue;this.ultraGrid1.DisplayLayout.Override.ActiveCellBorderThickness = 4;
only the borders of the cell with the focus are colored, not all the selected cells.
I'm using the version 10.3.20103.1000.Did I miss something ?
PS: the links (http://help.infragistics.com...) are dead ?