I have set the borders on my table to black with a width of 1. For certain cells, i want to have no borders so i am using the following included at the bottom of the post. On the screen, this works perfectly. When I print, however, the table borders show up as black with a width of 1. How do I remove the cell border so that it does not print?
dim border as CellBorder=ctype(tableData.getCell(0,0),aspose.slides.Cell).BorderBottom
dim iter as IEnumerator = border.GetEnumerator()
While iter.MoveNext()
Dim line as Aspose.Slides.Line=Ctype(iter.Current, Aspose.Slides.Line)
line.LineFormat.ForeColor = Color.White
line.LineFormat.Width = 0
End While