ドキュメントを生成する
ドキュメントを生成するには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;
}