TextBlock.Select(TextPointer, TextPointer) 方法

定义

TextBlock 中选择一个文本范围。

public:
 virtual void Select(TextPointer ^ start, TextPointer ^ end) = Select;
void Select(TextPointer const& start, TextPointer const& end);
public void Select(TextPointer start, TextPointer end);
function select(start, end)
Public Sub Select (start As TextPointer, end As TextPointer)

参数

start
TextPointer

一个 对象,表示要选择的范围的开头。

end
TextPointer

一个 对象,表示要选择的范围的末尾。

注解

在 WPF 和 Silverlight 中,等效 API 使用整数作为开始和结束位置。 此实现使用 TextPointer 对象来指定所选内容。

适用于