Click or drag to resize

ITextView Interface

Represents a TextView inside a IWindow

Namespace:  AdiIRCAPIv2.Interfaces
Assembly:  AdiIRCAPIv2 (in AdiIRCAPIv2.dll) Version: 2.0.1.7 (2.0.1.7)
Syntax
C#
public interface ITextView

The ITextView type exposes the following members.

Properties
  NameDescription
Public propertyLines
Returns the !TextView buffer lines.
Public propertyMaxBuffer
Returns the maxmimum buffer for this ITextView.
Public propertyMaxScrollbar
Returns the maxmimum number the scrollbar can scroll to (wrapped) lines.
Public propertyScrollbarPos
Returns the current scrollbar position. (wrapped lines)
Public propertyUseTimestamp
Returns whether time stamps is enabled for this ITextView buffer.
Top
Methods
  NameDescription
Public methodAdd
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
Public methodClear
Clears the ITextView buffer.
Public methodGetLine
Returns the Nth ITextView buffer line.
Public methodInsert
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
Public methodRemove
Removes the Nth ITextView buffer line.
Public methodReplace
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
Public methodScrollDown
Scrolls the scrollbar down 1 (wrapped) line.
Public methodScrollEnd
Scrolls the scrollbar to the end.
Public methodScrollHome
Scrolls the scrollbar to the start.
Public methodScrollPageDown
Scrolls the scrollbar 1 page down.
Public methodScrollPageUp
Scrolls the scrollbar 1 page up.
Public methodScrollTo
Scrolls the scrollbar to the Nth (wrapped) line.
Public methodScrollToUnreadLine
Scrolls the scrollbar to the unread line marker.
Public methodScrollUp
Scrolls the scrollbar up 1 (wrapped) line.
Top
See Also