TextBlock.Select(TextPointer, TextPointer) Method
Definition
public:
virtual void Select(TextPointer ^ start, TextPointer ^ end) = Select;
void Select(TextPointer const & start, TextPointer const & end);
public void Select(TextPointer start, TextPointer end);
Public Sub Select (start As TextPointer, end As TextPointer)
Parameters
- start
- TextPointer
An object that represents the start of the range to select.
- end
- TextPointer
An object that represents the end of the range to select.
Remarks
In WPF and Silverlight the equivalent API uses integer for start and end positions. This implementation uses TextPointer objects to specify the selection.