I need to be able to go back and change the bullet colors of a list that was added using insertHTML. The code to do it in asp.net would be:
Dim paragraphs As NodeCollection = doc.GetChildNodes(NodeType.Paragraph, True)
'Loop through all paragraphs
For Each par As Paragraph In paragraphs
'Check whether current paragraph is list item
If (par.IsListItem) Then
If par.ListFormat.ListLevel.NumberStyle.Equals(NumberStyle.Bullet) Then
par.ListFormat.ListLevel.Font.Color = “#FFFFFF”
End If
Next
Can you advise me as to what the correct code would be to get access to the Paragraph nodes in Classic ASP VB would be?
Hi
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Thanks for your inquiry. I think, in your case you should use COM wrapper. Please see the following link for more information:
Hope this helps.
Best regards.