How can I make the row line separator solid, and the column line separator dotted?
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.Override.BorderStyleRow = UIElementBorderStyle.Solid; e.Layout.Override.BorderStyleCell = UIElementBorderStyle.Dotted; }
I want to make the row line separator dotted, and the column line separator solid,
I set as below, but the result is that the row line separator and the column line separator
is solid.
{
e.Layout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;e.Layout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Solid;
}
How can I make the row line separator dotted, and the column line separator solid?