Text Area Scroll Position

I am attempting to create a telepromter, however TextArea ScrollPosition is limited to integers only (one line of text). I want to be able to scroll in increments smaller than one; is there a way to scroll in decimals.

For Example:

TextArea1.ScrollPosition= TextArea1.ScrollPosition+.25

[quote=202630:@James Krajicek]I am attempting to create a telepromter, however TextArea ScrollPosition is limited to integers only (one line of text). I want to be able to scroll in increments smaller than one; is there a way to scroll in decimals.

For Example:

TextArea1.ScrollPosition= TextArea1.ScrollPosition+.25[/quote]

Place a Read Only very long TextArea onto a ContainerControl, then move it up and down using such code that scrolls down 100 points :

myContainer.TextArea1.Top = -100

This moves extremely smoothly by points instead of lines.

thanks!