Floater 构造函数

定义

初始化 Floater 类的新实例。

重载

Floater()

初始化 Floater 类的新实例。

Floater(Block)

初始化 Floater 类的一个新实例,并使用指定的 Block 对象作为其初始内容。

Floater(Block, TextPointer)

初始化 Floater 类的一个新实例,其中使用指定 Block 对象作为其初始内容,并由一个 TextPointer 指定新 Floater 的插入位置。

Floater()

初始化 Floater 类的新实例。

public:
 Floater();
public Floater ();
Public Sub New ()

适用于

Floater(Block)

初始化 Floater 类的一个新实例,并使用指定的 Block 对象作为其初始内容。

public:
 Floater(System::Windows::Documents::Block ^ childBlock);
public Floater (System.Windows.Documents.Block childBlock);
new System.Windows.Documents.Floater : System.Windows.Documents.Block -> System.Windows.Documents.Floater
Public Sub New (childBlock As Block)

参数

childBlock
Block

Floater 的初始内容。

示例

以下示例演示如何使用此构造函数。

Paragraph parx = new Paragraph(new Run("Floater content..."));
Floater flotx = new Floater(parx);
Dim parx3 As New Paragraph(New Run("Floater content..."))
Dim flotx3 As New Floater(parx3)

适用于

Floater(Block, TextPointer)

初始化 Floater 类的一个新实例,其中使用指定 Block 对象作为其初始内容,并由一个 TextPointer 指定新 Floater 的插入位置。

public:
 Floater(System::Windows::Documents::Block ^ childBlock, System::Windows::Documents::TextPointer ^ insertionPosition);
public Floater (System.Windows.Documents.Block childBlock, System.Windows.Documents.TextPointer insertionPosition);
new System.Windows.Documents.Floater : System.Windows.Documents.Block * System.Windows.Documents.TextPointer -> System.Windows.Documents.Floater
Public Sub New (childBlock As Block, insertionPosition As TextPointer)

参数

childBlock
Block

Floater 的初始内容。 此参数可以为 null,在这种情况下,不插入任何 Block

insertionPosition
TextPointer

所创建的 Floater 元素的插入位置。

示例

以下示例演示如何使用此构造函数。

Span spanx = new Span();
Paragraph parx = new Paragraph(new Run("Floater content..."));

// This will populate the Floater with the Paragraph parx, and insert
// the Floater at the beginning of the Span spanx.
Floater flotx = new Floater(parx, spanx.ContentStart);
Dim spanx4 As New Span()
Dim parx4 As New Paragraph(New Run("Floater content..."))

    ' This will populate the Floater with the Paragraph parx, and insert
    ' the Floater at the beginning of the Span spanx.
Dim flotx4 As New Floater(parx4, spanx4.ContentStart)

适用于