什么是HTML文本格式化
HTML 可定义很多供格式化输出的元素,比如粗体和斜体字。
如下代码:
TThis text is normal
This text is bold
This text is strong
This text is big
This text is emphasized
This text is italic
This text is small
页面上显示如下:
This text is bold
This text is bold This t
不过VB.NET确实有许多VB6没有的新功能,代码的自动排版就是一项,这也正是我们今天要实现的功能——VB代码格式化。 先看下实现的效果: 格式化前: 代码如下: For i = 0 To WebBrowser1.Document.All.length – 1 If WebBrowser1.Document.All(i).tagName = “HTML” Then strContent = strContent & WebBrowser1.Document.All(i)[removed] Ex