TextBlock.Select(TextPointer, TextPointer) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
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 对象来指定所选内容。