AnchoredBlock(Block, TextPointer) 构造函数

定义

由某个派生类调用时,初始化基类值,将指定的 Block 对象作为 AnchoredBlock 的新后代的初始内容,并由一个 TextPointer 指定新 AnchoredBlock 后代的插入位置。

protected:
 AnchoredBlock(System::Windows::Documents::Block ^ block, System::Windows::Documents::TextPointer ^ insertionPosition);
protected AnchoredBlock (System.Windows.Documents.Block block, System.Windows.Documents.TextPointer insertionPosition);
new System.Windows.Documents.AnchoredBlock : System.Windows.Documents.Block * System.Windows.Documents.TextPointer -> System.Windows.Documents.AnchoredBlock
Protected Sub New (block As Block, insertionPosition As TextPointer)

参数

block
Block

一个 Block 对象,它指定新元素的初始内容。 此参数可以为 null,在这种情况下,不插入任何 Block

insertionPosition
TextPointer

一个 TextPointer,它指定插入所创建的元素的插入位置,或者为 null 以表示不自动插入。

适用于