Assigns whether the cue banner is shown when the TextBox has focus.

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 SetShowCueWhenFocused(
	TextBox textBox,
	bool showCueWhenFocused
)
Visual Basic
Public Sub SetShowCueWhenFocused ( 
	textBox As TextBox,
	showCueWhenFocused As Boolean
)
Visual C++
public:
void SetShowCueWhenFocused(
	TextBox^ textBox, 
	bool showCueWhenFocused
)
F#
member SetShowCueWhenFocused : 
        textBox : TextBox * 
        showCueWhenFocused : bool -> unit 

Parameters

textBox
Type: System.Windows.Forms..::..TextBox
The TextBox to assign the property to.
showCueWhenFocused
Type: System..::..Boolean
Whether the cue banner is shown when the TextBox has focus.

See Also