メインコンテンツまでスキップ

ドキュメントを生成する

ドキュメントを生成するにはIWorkspaceオブジェクトのGenerateDocumentメソッドを用います。

Word形式のドキュメントを生成する

Word形式のドキュメントを生成する例です。

public DocumentGenerationResult GenerateWordDocument(ICommandContext c, ICommandParams p)
{
DocumentGenerationOptions options = new DocumentGenerationOptions
{
Format = "word",
Scope = "all",
OutputPath = "{保存先のファイルパス}"
};

DocumentGenerationResult result = c.App.Workspace.GenerateDocument(options);

return result;
}