Classe TableGenerator

Information

Représente le plugin Documentize.TableGenerator. Utilisé pour ajouter un tableau à un document PDF.

public sealed class TableGenerator

Héritage

objectTableGenerator

Membres hérité

Exemples

L’exemple montre comment ajouter un tableau à un fichier PDF.

// créer TableGenerator
var plugin = new TableGenerator();
// créer un objet TableOptions pour définir les instructions
TableOptions opt = new TableOptions().InsertPageBefore(1)
   .AddTable()
        .AddRow()
            .AddCell().AddParagraph("Nom")
            .AddCell().AddParagraph("Âge")
        .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");
// ajouter le chemin du fichier d'entrée
opt.AddInput(new FileDataSource(inputPath1));
// définir le chemin du fichier de sortie
opt.AddOutput(new FileDataSource(outputPath));
// effectuer le processus
plugin.Process(opt);

Constructeurs

TableGenerator()

public TableGenerator()

Méthodes

Process(TableOptions)

Démarre le traitement Documentize.TableGenerator avec les paramètres spécifiés.

public ResultContainer Process(TableOptions options)

Paramètres

  • options TableOptions : Un objet d’options contenant des instructions pour Documentize.TableGenerator.

Retourne

ResultContainer : Un objet ResultContainer contenant le résultat de l’opération.

Namespace: Documentize Assembly: Documentize.dll

 Français