ITextView.Insert Method

AdiIRC API v2

ITextViewInsert Method

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

Namespace:  AdiIRCAPIv2.Interfaces
Assembly:  AdiIRCAPIv2 (in AdiIRCAPIv2.dll) Version: 2.0.1.4 (2.0.1.4)
Syntax
void Insert(
	string text,
	int line,
	int lineColor,
	string rgbLineColor
)
Sub Insert ( 
	text As String,
	line As Integer,
	lineColor As Integer,
	rgbLineColor As String
)
void Insert(
	String^ text, 
	int line, 
	int lineColor, 
	String^ rgbLineColor
)
abstract Insert : 
        text : string * 
        line : int * 
        lineColor : int * 
        rgbLineColor : string -> unit 

Parameters

text
Type: SystemString
Text to insert
line
Type: SystemInt32
Line number to insert at
lineColor
Type: SystemInt32
Linecolor to use for this line
rgbLineColor
Type: SystemString
Optional rgb linecolor to use for this line in hex format RRGGBB
See Also