Hi all...

I have lines in a richtextbox that I wish to count ONLY if they are black in color.
Some lines are light gray, and I don't want to count them.

This is about all I have, but "line" doesn't have properties that relate to font color that I can see.


Code:
        For Each line In myRTB.Lines
            if line.  {some property that returns the font color} = color.black then
                theCount = theCount + 1
        Next line
I hope this is clear enough...

Thanks for your kind help!

SMS