Updates the current selection, taking two TextPointer positions to indicate the updated selection.

Namespace: FirstFloor.Documents
Assembly: FirstFloor.Documents (in FirstFloor.Documents.dll) Version: 2.5.0.0 (2.5.1.0)

Syntax

C#
public void Select(
	TextPointer position1,
	TextPointer position2
)
Visual Basic
Public Sub Select ( _
	position1 As TextPointer, _
	position2 As TextPointer _
)
Visual C++
public:
void Select(
	TextPointer^ position1, 
	TextPointer^ position2
)

Parameters

position1
Type: FirstFloor.Documents..::..TextPointer
A position that marks the start of the updated selection.
position2
Type: FirstFloor.Documents..::..TextPointer
A position that marks the end of the updated selection.

See Also