This question is locked. New answers and comments are not allowed.
Before updating to the latest build and SL5, I would set table borders like this:
var headCell = headtable.Rows.First.Cells.First;
headCell.Borders.All = Telerik.Windows.Documents.Model.Border(0, BorderStyle.None, Colors.White);
The above would give me no borders. This property became read only in the new stuff, so I started using Borders.SetTop(), Borders,SetBottom(), etc. However it doesn't seem to do anything, I always get a single black border around all my cells. Here is an example of how I am trying to use SetTop:
headCell.Borders.SetTop(
new Telerik.Windows.Documents.Model.Border(0,BorderStyle.None, Colors.White));
What is the correct way to set the borders in the latest build? I am using the 4/16 internal DLLs.