Spread Windows Forms 7.0 Product Documentation
HideSelection Property
See Also  Example Support Options
FarPoint.Win Assembly > FarPoint.Win Namespace > SuperEditBase Class : HideSelection Property


Glossary Item Box

Gets or sets whether selected text loses its highlighting when the control loses focus.

Syntax

Visual Basic (Declaration) 
Public Overridable Property HideSelection As Boolean
Visual Basic (Usage)Copy Code
Dim instance As SuperEditBase
Dim value As Boolean
 
instance.HideSelection = value
 
value = instance.HideSelection
C# 
public virtual bool HideSelection {get; set;}

Property Value

Boolean value: true to hide the selection highlight when the control loses focus; false otherwise

Remarks

When this property is set to true, selected text does not appear highlighted when the control loses the focus. When this property is set to false, selected text remains highlighted when the control loses the focus.

Note: In some controls, this property is always set to false, or is sometimes overridden and set to false temporarily, due to how the control appears when it is edited. That is, if the control displays its contents in one way when it is being edited, but in another way when it is not in edit mode, it might have this property set to false at all times.

Use this property to indicate whether the selected text is selected while another form or a dialog box has the focus, for example, in a spell-checking routine.

Example

C#Copy Code
control.EditModeCursorPosition = FarPoint.Win.EditModeCursorPosition.LastKnownPosition;
control.Text = "This is a test for HideSelection";
control.ControlType = FarPoint.Win.ControlType.Normal;
control.SelectionStart = 2;
control.SelectionLength = 5;
control.Selectable = true;
control.HideSelection = false;
control.AutoMenu = true;
textBox1.Text = control.SelectedText();
control.MaxLength = 9;
Visual BasicCopy Code
control.EditModeCursorPosition = FarPoint.Win.EditModeCursorPosition.LastKnownPosition
control.Text = "This is a test for HideSelection"
control.ControlType = FarPoint.Win.ControlType.Normal
control.SelectionStart = 2
control.SelectionLength = 5
control.Selectable = True
control.HideSelection = False
control.AutoMenu = True
TextBox1.Text = control.SelectedText()
control.MaxLength = 9

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.