Section 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 Section.
Surcharges
Section() |
Initialise une nouvelle instance vide de la classe Section. |
Section(Block) |
Initialise une nouvelle instance de la classe Section, en prenant un objet Block spécifié comme contenu initial du nouveau Section. |
Section()
Initialise une nouvelle instance vide de la classe Section.
public:
Section();
public Section ();
Public Sub New ()
S’applique à
Section(Block)
public:
Section(System::Windows::Documents::Block ^ block);
public Section (System.Windows.Documents.Block block);
new System.Windows.Documents.Section : System.Windows.Documents.Block -> System.Windows.Documents.Section
Public Sub New (block As Block)
Paramètres
Exemples
L’exemple suivant illustre l’utilisation de ce constructeur.
// A child Block element for the new Section element.
Paragraph parx = new Paragraph(new Run("A bit of text content..."));
// After this line executes, the new element "secx"
// contains the specified Block element, "parx".
Section secx = new Section(parx);
' A child Block element for the new Section element.
Dim parx As New Paragraph(New Run("A bit of text content..."))
' After this line executes, the new element "secx"
' contains the specified Block element, "parx".
Dim secx As New Section(parx)