AddTable

ShapeCollection.AddTable-Methode

Erstellt eine neue Tabelle und fügt sie am Ende der Sammlung hinzu.

public ITable AddTable(float x, float y, double[] columnWidths, double[] rowHeights)
ParameterTypBeschreibung
xEinzelner WertDie X-Koordinate für die linke Seite des Rahmens der Form.
yEinzelner WertDie Y-Koordinate für die obere Seite des Rahmens der Form.
columnWidthsDouble[]Array von Doubles, das die Breiten der Spalten in der Tabelle darstellt.
rowHeightsDouble[]Array von Doubles, das die Höhen der Zeilen in der Tabelle darstellt.

Rückgabewert

Erstelltes Tabellenobjekt.

Beispiele

Die folgenden Beispiele zeigen, wie man eine Tabelle in einer PowerPoint-Präsentation hinzufügt.

[C#]
// Instanziiere die Presentation-Klasse, die die PPTX-Datei darstellt
using (Presentation pres = new Presentation()){
	// Zugriff auf die erste Folie
	ISlide sld = pres.Slides[0];
	// Definiere Spalten mit Breiten und Zeilen mit Höhen
	double[] dblCols = { 50, 50, 50 };
	double[] dblRows = { 50, 30, 30, 30, 30 };
	// Füge der Folie eine Tabellenform hinzu
	ITable tbl = sld.Shapes.AddTable(100, 50, dblCols, dblRows);
	// Setze das Rahmenformat für jede Zelle
	for (int row = 0; row < tbl.Rows.Count; row++)
	{
		for (int cell = 0; cell < tbl.Rows[row].Count; cell++)
		{
			tbl.Rows[row][cell].CellFormat.BorderTop.FillFormat.FillType = FillType.Solid;
			tbl.Rows[row][cell].CellFormat.BorderTop.FillFormat.SolidFillColor.Color = Color.Red;
			tbl.Rows[row][cell].CellFormat.BorderTop.Width = 5;
			tbl.Rows[row][cell].CellFormat.BorderBottom.FillFormat.FillType = (FillType.Solid);
			tbl.Rows[row][cell].CellFormat.BorderBottom.FillFormat.SolidFillColor.Color= Color.Red;
			tbl.Rows[row][cell].CellFormat.BorderBottom.Width =5;
			tbl.Rows[row][cell].CellFormat.BorderLeft.FillFormat.FillType = FillType.Solid;
			tbl.Rows[row][cell].CellFormat.BorderLeft.FillFormat.SolidFillColor.Color =Color.Red;
			tbl.Rows[row][cell].CellFormat.BorderLeft.Width = 5;
			tbl.Rows[row][cell].CellFormat.BorderRight.FillFormat.FillType = FillType.Solid;
			tbl.Rows[row][cell].CellFormat.BorderRight.FillFormat.SolidFillColor.Color = Color.Red;
			tbl.Rows[row][cell].CellFormat.BorderRight.Width = 5;
		}
	}
	// Mersche Zellen 1 & 2 der Zeile 1
	tbl.MergeCells(tbl.Rows[0][0], tbl.Rows[1][1], false);
	// Füge Text zur zusammengelegten Zelle hinzu
	tbl.Rows[0][0].TextFrame.Text = "Zusammengelegte Zellen";
	// Speichere PPTX auf der Festplatte
	pres.Save("table.pptx", SaveFormat.Pptx);
}

Siehe auch