Spread Windows Forms 10.0 Product Documentation
EditModeCursorPosition Property
Example 


Gets or sets the position of the pointer in the edit control when it receives the focus.
Syntax
'Declaration
 
Public Overridable Property EditModeCursorPosition As EditModeCursorPosition
'Usage
 
Dim instance As SuperEditBase
Dim value As EditModeCursorPosition
 
instance.EditModeCursorPosition = value
 
value = instance.EditModeCursorPosition
public virtual EditModeCursorPosition EditModeCursorPosition {get; set;}

Property Value

EditModeCursorPosition setting that determines the position of the pointer in the edit control when it receives the focus
Remarks

Some controls display a cursor when they receive the focus. Specify the position of the cursor by setting this property.

Example
control.Text = "This is a test of the pointer position.";
control.EditModeCursorPosition = FarPoint.Win.EditModeCursorPosition.LastKnownPosition;
control.AcceptsTab = true;
control.MarginLeft = 5;
control.Text = "This is a test of the pointer position."
control.EditModeCursorPosition = FarPoint.Win.EditModeCursorPosition.LastKnownPosition
control.AcceptsTab = True
control.MarginLeft = 5
Requirements

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

See Also

Reference

SuperEditBase Class
SuperEditBase Members
EditModeCursorPosition Enumeration

 

 


Copyright © GrapeCity, inc. All rights reserved.