Udostępnij za pośrednictwem


Floater Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy Floater.

Przeciążenia

Floater()

Inicjuje nowe wystąpienie klasy Floater.

Floater(Block)

Inicjuje nowe wystąpienie klasy Floater z określonym obiektem Block jako jego początkową zawartością.

Floater(Block, TextPointer)

Inicjuje nowe wystąpienie klasy Floater z określonym obiektem Block jako jego początkową zawartością, a TextPointer, który określa położenie wstawiania dla nowego Floater.

Floater()

Inicjuje nowe wystąpienie klasy Floater.

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

Dotyczy

Floater(Block)

Inicjuje nowe wystąpienie klasy Floater z określonym obiektem Block jako jego początkową zawartością.

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)

Parametry

childBlock
Block

Początkowa zawartość nowego Floater.

Przykłady

W poniższym przykładzie pokazano, jak używać tego konstruktora.

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)

Dotyczy

Floater(Block, TextPointer)

Inicjuje nowe wystąpienie klasy Floater z określonym obiektem Block jako jego początkową zawartością, a TextPointer, który określa położenie wstawiania dla nowego 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)

Parametry

childBlock
Block

Początkowa zawartość nowego Floater. Ten parametr może być null, w takim przypadku nie zostanie wstawiony żaden Block.

insertionPosition
TextPointer

Położenie, w którym ma być wstawiony element Floater po jego utworzeniu.

Przykłady

W poniższym przykładzie pokazano, jak używać tego konstruktora.

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)

Dotyczy