Assigns the cue banner text to the specified TextBox.

Namespace: System.Extensions.Windows.Forms
Assembly: System.Extensions (in System.Extensions.dll) Version: 0.0.0.5 (0.0.0.5)

Syntax

C#
public void SetCueBanner(
	TextBox textBox,
	string cueBanner
)
Visual Basic
Public Sub SetCueBanner ( 
	textBox As TextBox,
	cueBanner As String
)
Visual C++
public:
void SetCueBanner(
	TextBox^ textBox, 
	String^ cueBanner
)
F#
member SetCueBanner : 
        textBox : TextBox * 
        cueBanner : string -> unit 

Parameters

textBox
Type: System.Windows.Forms..::..TextBox
The TextBox to assign the cue banner to.
cueBanner
Type: System..::..String
The cue banner text to display when the TextBox is empty.

See Also