GeneratorTabeli Klasa
Info
Reprezentuje wtyczkę Documentize.TableGenerator. Służy do dodawania tabeli do dokumentu PDF.
public sealed class TableGenerator
Dziedziczenie
Członkowie dziedziczeni
- object.GetType(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
Przykłady
Przykład pokazuje, jak dodać tabelę do pliku PDF.
// utwórz GeneratorTabeli
var plugin = new TableGenerator();
// utwórz obiekt TableOptions, aby ustawić instrukcje
TableOptions opt = new TableOptions().InsertPageBefore(1)
.AddTable()
.AddRow()
.AddCell().AddParagraph("Nazwisko")
.AddCell().AddParagraph("Wiek")
.AddRow()
.AddCell().AddParagraph("Bob")
.AddCell().AddParagraph("12")
.AddRow()
.AddCell().AddParagraph("Sam")
.AddCell().AddParagraph("20")
.AddRow()
.AddCell().AddParagraph("Sandy")
.AddCell().AddParagraph("26")
.AddRow()
.AddCell().AddParagraph("Tom")
.AddCell().AddParagraph("12")
.AddRow()
.AddCell().AddParagraph("Jim")
.AddCell().AddParagraph("27");
// dodaj ścieżkę do pliku wejściowego
opt.AddInput(new FileDataSource(inputPath1));
// ustaw ścieżkę do pliku wyjściowego
opt.AddOutput(new FileDataSource(outputPath));
// wykonaj proces
plugin.Process(opt);
Konstruktory
TableGenerator()
public TableGenerator()
Metody
Process(TableOptions)
Rozpoczyna przetwarzanie Documentize.TableGenerator z określonymi parametrami.
public ResultContainer Process(TableOptions options)
Parametry
options
TableOptions: Obiekt opcji zawierający instrukcje dla Documentize.TableGenerator.
Zwraca
ResultContainer : Obiekt ResultContainer zawierający wynik operacji.
Namespace: Documentize Assembly: Documentize.dll