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