ITextView Interface |
Namespace: AdiIRCAPI
The ITextView type exposes the following members.
| Name | Description | |
|---|---|---|
| Lines |
Returns the !TextView buffer lines
| |
| MaxBuffer |
Returns the maxmimum buffer for this ITextView
| |
| MaxScrollbar |
Returns the maxmimum number the scrollbar can scroll to (wrapped lines)
| |
| ScrollbarPos |
Returns the current scrollbar position (wrapped lines)
| |
| UseTimestamp |
Returns whether time stamps is enabled for this ITextView buffer
|
| Name | Description | |
|---|---|---|
| Add |
Adds a line of text to the ITextView buffer
Adding lines manually requires all formatting to be done manually as well, format =
timestamp + " " + ITools.NickColumChar + nick + ITools.NickColumChar + " " + text
| |
| Clear |
Clears the ITextView buffer
| |
| GetLine |
Returns the Nth ITextView buffer line
| |
| Insert |
Inserts a line of text at the Nth line in the ITextView buffer
Adding lines manually requires all formatting to be done manually as well, format =
timestamp + " " + ITools.NickColumChar + nick + ITools.NickColumChar + " " + text
| |
| Remove |
Removes the Nth ITextView buffer line
| |
| Replace |
Replaces the Nth line in the ITextView buffer with a new text
Adding lines manually requires all formatting to be done manually as well, format =
timestamp + " " + ITools.NickColumChar + nick + ITools.NickColumChar + " " + text
| |
| ScrollDown |
Scrolls the scrollbar down 1 (wrapped line)
| |
| ScrollEnd |
Scrolls the scrollbar to the end
| |
| ScrollHome |
Scrolls the scrollbar to the start
| |
| ScrollPageDown |
Scrolls the scrollbar 1 page down
| |
| ScrollPageUp |
Scrolls the scrollbar 1 page up
| |
| ScrollTo |
Scrolls the scrollbar to the Nth (wrapped) line
| |
| ScrollToUnreadLine |
Scrolls the scrollbar to the unread line marker
| |
| ScrollUp |
Scrolls the scrollbar up 1 (wrapped line)
|