Gets or sets whether the focus moves to another control when the pointer is moved with the arrow keys.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Property AutoAdvance As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SuperEditBase
Dim value As Boolean
instance.AutoAdvance = value
value = instance.AutoAdvance |
C# | |
---|
public virtual bool AutoAdvance {get; set;} |
Property Value
Boolean value:
true to allow the user to automatically advance with arrow keys;
false otherwise
Remarks
Example
This example test the pointer position.
C# | Copy Code |
---|
control.Text = "This is a test of the pointer position.";
control.EditModeCursorPosition = FarPoint.Win.EditModeCursorPosition.LastKnownPosition;
control.AcceptsTab = true;
control.AutoAdvance = false;
control.MarginLeft = 5;
|
Visual Basic | Copy Code |
---|
control.Text = "This is a test of the pointer position."
control.EditModeCursorPosition = FarPoint.Win.EditModeCursorPosition.LastKnownPosition
control.AcceptsTab = True
control.AutoAdvance = False
control.MarginLeft = 5
|
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also