Floater Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe Floater.
Surcharges
Floater() |
Initialise une nouvelle instance de la classe Floater. |
Floater(Block) |
Initialise une nouvelle instance de la classe Floater, avec un objet Block spécifié comme son contenu initial. |
Floater(Block, TextPointer) |
Initialise une nouvelle instance de la classe Floater avec l'objet Block spécifié comme son contenu initial, et un TextPointer qui spécifie une position d'insertion pour le nouveau Floater. |
Floater()
Initialise une nouvelle instance de la classe Floater.
public:
Floater();
public Floater ();
Public Sub New ()
S’applique à
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)
Paramètres
Exemples
L’exemple suivant montre comment utiliser ce constructeur.
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)
S’applique à
Floater(Block, TextPointer)
Initialise une nouvelle instance de la classe Floater avec l'objet Block spécifié comme son contenu initial, et un TextPointer qui spécifie une position d'insertion pour le nouveau 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)
Paramètres
- childBlock
- Block
Contenu initial du nouveau Floater. Ce paramètre peut être null
, auquel cas aucun Block n'est inséré.
- insertionPosition
- TextPointer
La position à laquelle insérer l'élément Floater après sa création.
Exemples
L’exemple suivant montre comment utiliser ce constructeur.
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)