TableCell Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Inicializa uma nova instância da classe TableCell.
Sobrecargas
TableCell() |
Inicializa uma nova instância vazia da classe TableCell. |
TableCell(Block) |
Inicializa uma nova instância da classe TableCell, usando um objeto Block especificado como o conteúdo inicial do novo TableCell. |
TableCell()
Inicializa uma nova instância vazia da classe TableCell.
public:
TableCell();
public TableCell ();
Public Sub New ()
Aplica-se a
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)
Parâmetros
Exemplos
O exemplo a seguir demonstra o uso desse construtor.
// 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)