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 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also