TableCell Constructeurs

Définition

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)

Initialise une nouvelle instance de la classe TableCell, en prenant un objet Block spécifié comme contenu initial du nouveau TableCell.

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

blockItem
Block

Objet Block spécifiant le contenu initial du nouveau TableCell.

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)

S’applique à